:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --text-light: #FFFFFF;
    --text-muted: #B8B8B8;
    --accent-glow: rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a1410 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Brand Section */
.brand-section {
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out;
}

.logo-ornament {
    color: var(--gold-primary);
    font-size: 2rem;
    margin: 0.5rem 0;
    animation: sparkle 3s ease-in-out infinite;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    margin: 1rem 0;
    text-shadow: 0 0 30px var(--accent-glow);
    animation: shimmer 4s ease-in-out infinite;
}

.brand-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Image Section */
.image-container {
    margin: 3rem auto;
    max-width: 800px;
    animation: fadeIn 1.5s ease-out 0.3s backwards;
}

.image-frame {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px var(--accent-glow);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px var(--accent-glow);
}

.jewellery-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

/* Message Section */
.message-section {
    margin: 3rem 0;
    animation: fadeIn 1.8s ease-out 0.6s backwards;
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.sub-heading {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.divider {
    margin: 2rem auto;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
    position: relative;
}

.divider-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    background: var(--bg-dark);
    padding: 0 1rem;
    font-size: 1.2rem;
}

/* Countdown Section */
.countdown-section {
    margin: 3rem 0;
    animation: fadeIn 2.1s ease-out 0.9s backwards;
}

.countdown-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold-light);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease-out backwards;
}

.time-unit:nth-child(1) {
    animation-delay: 1.0s;
}

.time-unit:nth-child(3) {
    animation-delay: 1.1s;
}

.time-unit:nth-child(5) {
    animation-delay: 1.2s;
}

.time-unit:nth-child(7) {
    animation-delay: 1.3s;
}

.time-unit:hover {
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.time-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.time-separator {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-primary);
    font-weight: 600;
    animation: blink 2s ease-in-out infinite;
}

/* Social Media Section */
.social-section {
    margin: 3rem 0 2rem;
    animation: fadeIn 2.4s ease-out 1.5s backwards;
}

.social-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold-light);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.social-link svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: var(--gold-light);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(212, 175, 55, 0.5);
}

.social-link:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Facebook specific styling */
.social-link.facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
    box-shadow:
        0 15px 40px rgba(24, 119, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(24, 119, 242, 0.4);
}

.social-link.facebook:hover::before {
    background: rgba(24, 119, 242, 0.15);
}

/* Instagram specific styling */
.social-link.instagram:hover {
    border-color: #E4405F;
    color: #E4405F;
    box-shadow:
        0 15px 40px rgba(228, 64, 95, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(228, 64, 95, 0.4);
}

.social-link.instagram:hover::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0.15;
}

/* WhatsApp specific styling */
.social-link.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    box-shadow:
        0 15px 40px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(37, 211, 102, 0.4);
}

.social-link.whatsapp:hover::before {
    background: rgba(37, 211, 102, 0.15);
}

/* Staggered animation for social links */
.social-link:nth-child(1) {
    animation: slideUp 0.6s ease-out 1.6s backwards;
}

.social-link:nth-child(2) {
    animation: slideUp 0.6s ease-out 1.7s backwards;
}

.social-link:nth-child(3) {
    animation: slideUp 0.6s ease-out 1.8s backwards;
}

/* Footer Section */
.footer-section {
    margin-top: 4rem;
    animation: fadeIn 2.4s ease-out 1.2s backwards;
}

.footer-text {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes blink {

    0%,
    49%,
    100% {
        opacity: 1;
    }

    50%,
    99% {
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .image-frame {
        padding: 1rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-unit {
        padding: 1rem 1.5rem;
        min-width: 90px;
    }

    .time-separator {
        display: none;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-link {
        width: 55px;
        height: 55px;
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .time-unit {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }

    .brand-section {
        margin-bottom: 2rem;
    }

    .message-section {
        margin: 2rem 0;
    }
}