/* Color Variables */
:root {
    --gold: #D4AF37;
    --cream: #FFF8E7;
    --charcoal: #111111;
    --gold-light: #e6c567;
    --gold-dark: #b89227;
    --dark-charcoal: #0a0a0a;
    /* Aromatherapy scents colors */
    --lavender: #E6E6FA;
    --vanilla: #F3E5AB;
    --eucalyptus: #8F9779;
    --jasmine: #F8DE7E;
    --rose: #FF007F;
    --sandalwood: #A0522D;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
    color: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background ambient animation */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
    animation: shimmer 15s infinite linear;
    z-index: -1;
}

/* Particle background effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Header Styles */
header {
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    opacity: 0;
    animation: fadeInDown 1.5s ease-out forwards 0.5s;
}

.subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards 1s;
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards 1.5s;
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(17, 17, 17, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards 2s;
}

.countdown-heading {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(17, 17, 17, 0.8);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
}

/* Notification Section */
.notification-section {
    margin: 3rem 0;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards 2.5s;
}

.notify-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-input {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    background: transparent;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    min-width: 250px;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 248, 231, 0.7);
}

.notify-btn {
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.notify-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards 3s;
}

.section-title {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Candle Container */
.candle-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    perspective: 1000px;
    gap: 3rem;
    position: relative;
}

.candle-group {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: flex-end;
}

.candle-group.secondary {
    gap: 3rem;
    margin-top: 2rem;
}

/* Aromatherapy Candles */
.aroma-candle {
    position: relative;
    width: 50px;
    height: 140px;
    background: linear-gradient(to right, #f8f8f8, #f0f0f0, #f8f8f8);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.aroma-candle.lavender {
    background: linear-gradient(to right, #f0f0ff, #e0e0fa, #f0f0ff);
}

.aroma-candle.vanilla {
    background: linear-gradient(to right, #fdfdfd, #f5f5dc, #fdfdfd);
}

.aroma-candle.eucalyptus {
    background: linear-gradient(to right, #f5fff5, #e8f0e8, #f5fff5);
}

.aroma-candle.jasmine {
    background: linear-gradient(to right, #fffbf0, #fff8dc, #fffbf0);
}

.aroma-candle.rose {
    background: linear-gradient(to right, #fff5f5, #ffe0e0, #fff5f5);
}

.aroma-candle.sandalwood {
    background: linear-gradient(to right, #f5f0f0, #e8d8d8, #f5f0f0);
}

.aroma-candle.small {
    width: 35px;
    height: 100px;
    animation-delay: 0.9s;
}

/* Candle Wax Drip Effect */
.aroma-candle::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 7px;
    width: 36px;
    height: 24px;
    background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
    border-radius: 50%;
    clip-path: ellipse(40% 60% at 50% 40%);
}

.aroma-candle.lavender::before {
    background: linear-gradient(to bottom, #f0f0ff, #e0e0fa);
}

.aroma-candle.vanilla::before {
    background: linear-gradient(to bottom, #fdfdfd, #f5f5dc);
}

.aroma-candle.eucalyptus::before {
    background: linear-gradient(to bottom, #f5fff5, #e8f0e8);
}

.aroma-candle.jasmine::before {
    background: linear-gradient(to bottom, #fffbf0, #fff8dc);
}

.aroma-candle.rose::before {
    background: linear-gradient(to bottom, #fff5f5, #ffe0e0);
}

.aroma-candle.sandalwood::before {
    background: linear-gradient(to bottom, #f5f0f0, #e8d8d8);
}

/* Candle Wick */
.candle-wick {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #333;
    z-index: 8;
}

/* Candle Flame */
.candle-flame {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 35px;
    background: linear-gradient(to top, #ff9900, #ffde00, #ffffff);
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 0 20px #ff9900, 0 0 40px #ffde00;
    animation: flicker 0.5s infinite alternate, glow 2s infinite alternate;
    z-index: 10;
}

/* Candle Glow Effect */
.aroma-candle::after {
    content: "";
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 70px;
    background: radial-gradient(ellipse at center, rgba(255, 222, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.7;
    animation: glowPulse 3s infinite ease-in-out;
    z-index: 5;
}

/* Essential Oil Bubbles */
.essential-oil-bubbles {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: bubbleRise 8s infinite ease-out;
    opacity: 0.7;
}

.aroma-candle.lavender .essential-oil-bubbles {
    background: radial-gradient(circle, rgba(230, 230, 250, 0.8) 0%, rgba(230, 230, 250, 0.3) 70%);
    box-shadow: 0 0 10px rgba(230, 230, 250, 0.5);
}

.aroma-candle.vanilla .essential-oil-bubbles {
    background: radial-gradient(circle, rgba(243, 229, 171, 0.8) 0%, rgba(243, 229, 171, 0.3) 70%);
    box-shadow: 0 0 10px rgba(243, 229, 171, 0.5);
}

.aroma-candle.eucalyptus .essential-oil-bubbles {
    background: radial-gradient(circle, rgba(143, 151, 121, 0.8) 0%, rgba(143, 151, 121, 0.3) 70%);
    box-shadow: 0 0 10px rgba(143, 151, 121, 0.5);
}

.aroma-candle.jasmine .essential-oil-bubbles {
    background: radial-gradient(circle, rgba(248, 222, 126, 0.8) 0%, rgba(248, 222, 126, 0.3) 70%);
    box-shadow: 0 0 10px rgba(248, 222, 126, 0.5);
}

.aroma-candle.rose .essential-oil-bubbles {
    background: radial-gradient(circle, rgba(255, 0, 127, 0.8) 0%, rgba(255, 0, 127, 0.3) 70%);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.aroma-candle.sandalwood .essential-oil-bubbles {
    background: radial-gradient(circle, rgba(160, 82, 45, 0.8) 0%, rgba(160, 82, 45, 0.3) 70%);
    box-shadow: 0 0 10px rgba(160, 82, 45, 0.5);
}

/* Fragrance Notes */
.fragrance-notes {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.note {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    opacity: 0.8;
    animation: fadeInOut 4s infinite ease-in-out;
}

/* Essential Oil Droplets Floating Around */
.essential-oil-droplets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.oil-droplet {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatDroplet linear infinite;
}

.oil-droplet.lavender {
    background: radial-gradient(circle, var(--lavender), rgba(230, 230, 250, 0.5));
    box-shadow: 0 0 8px var(--lavender);
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.oil-droplet.vanilla {
    background: radial-gradient(circle, var(--vanilla), rgba(243, 229, 171, 0.5));
    box-shadow: 0 0 8px var(--vanilla);
    top: 40%;
    right: 15%;
    animation-duration: 30s;
}

.oil-droplet.eucalyptus {
    background: radial-gradient(circle, var(--eucalyptus), rgba(143, 151, 121, 0.5));
    box-shadow: 0 0 8px var(--eucalyptus);
    bottom: 30%;
    left: 20%;
    animation-duration: 35s;
}

.oil-droplet.jasmine {
    background: radial-gradient(circle, var(--jasmine), rgba(248, 222, 126, 0.5));
    box-shadow: 0 0 8px var(--jasmine);
    top: 60%;
    right: 10%;
    animation-duration: 28s;
}

.oil-droplet.rose {
    background: radial-gradient(circle, var(--rose), rgba(255, 0, 127, 0.5));
    box-shadow: 0 0 8px var(--rose);
    bottom: 20%;
    right: 25%;
    animation-duration: 32s;
}

/* Candle Wax Drip */
.candle-wax-drip {
    position: absolute;
    top: 15px;
    width: 10px;
    height: 25px;
    background: #f0f0f0;
    border-radius: 0 0 5px 5px;
    animation: drip 6s infinite ease-out;
}

.aroma-candle.lavender .candle-wax-drip {
    background: #e0e0fa;
}

.aroma-candle.vanilla .candle-wax-drip {
    background: #f5f5dc;
}

.aroma-candle.eucalyptus .candle-wax-drip {
    background: #e8f0e8;
}

.aroma-candle.jasmine .candle-wax-drip {
    background: #fff8dc;
}

.aroma-candle.rose .candle-wax-drip {
    background: #ffe0e0;
}

.aroma-candle.sandalwood .candle-wax-drip {
    background: #e8d8d8;
}

/* Candle Smoke */
.candle-smoke {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0;
    animation: smoke 5s infinite ease-out;
}

/* Luxury Contact Section */
.luxury-contact-section {
    padding: 4rem 1rem;
    margin: 3rem 0;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.luxury-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    margin: 0.3rem 0;
    letter-spacing: 0.5px;
}

.contact-value a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.contact-actions {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.luxury-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: 0.5s;
}

.luxury-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.luxury-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    font-weight: 600;
}

.whatsapp-btn {
    background: var(--gold);
    color: var(--charcoal);
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.email-btn {
    background: rgba(17, 17, 17, 0.8);
}

.email-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 248, 231, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flicker {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translateX(-50%) scale(1.05, 0.95);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(0.95, 1.05);
        opacity: 0.95;
    }
    75% {
        transform: translateX(-50%) scale(1.02, 0.98);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.9;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px #ff9900, 0 0 30px #ffde00;
    }
    100% {
        box-shadow: 0 0 25px #ff9900, 0 0 50px #ffde00, 0 0 70px rgba(255, 222, 0, 0.5);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.8);
    }
}

@keyframes smoke {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -20px) scale(2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -40px) scale(4);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes drip {
    0% {
        height: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        height: 30px;
        opacity: 0.8;
    }
    100% {
        height: 35px;
        opacity: 0;
        transform: translateY(25px);
    }
}

@keyframes bubbleRise {
    0% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }
    30% {
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -40px) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -80px) scale(0.8);
        opacity: 0;
    }
}

@keyframes floatDroplet {
    to {
        transform: translate(50px, -100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .candle-group {
        gap: 3rem;
    }
    
    .candle-group.secondary {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .subheading {
        font-size: 1.8rem;
    }
    
    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .candle-group {
        gap: 2.5rem;
    }
    
    .candle-group.secondary {
        gap: 1.5rem;
    }
    
    .aroma-candle {
        width: 45px;
        height: 130px;
    }
    
    .aroma-candle.small {
        width: 30px;
        height: 90px;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .subheading {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .aroma-candle {
        width: 40px;
        height: 120px;
    }
    
    .aroma-candle.small {
        width: 25px;
        height: 80px;
    }
    
    .candle-group {
        gap: 2rem;
    }
    
    .candle-group.secondary {
        gap: 1rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        width: 80%;
        max-width: 300px;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    
    .luxury-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2.2rem;
    }
    
    .subheading {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .aroma-candle {
        width: 35px;
        height: 110px;
    }
    
    .aroma-candle.small {
        width: 22px;
        height: 75px;
    }
    
    .candle-group {
        gap: 1.5rem;
    }
    
    .candle-group.secondary {
        display: none;
    }
    
    .notify-text {
        font-size: 1rem;
    }
    
    .email-input {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .notify-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .contact-label {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .subheading {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .aroma-candle {
        width: 30px;
        height: 100px;
    }
    
    .aroma-candle.small {
        width: 20px;
        height: 70px;
    }
    
    .candle-group {
        gap: 1rem;
    }
    
    .notify-text {
        font-size: 0.9rem;
    }
    
    .email-input {
        min-width: 180px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-heading {
        font-size: 1.5rem;
    }
    
    .luxury-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .main-heading {
        font-size: 1.8rem;
    }
    
    .subheading {
        font-size: 1.1rem;
    }
    
    .countdown-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .aroma-candle {
        width: 25px;
        height: 90px;
    }
    
    .aroma-candle.small {
        width: 18px;
        height: 65px;
    }
}