/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Container */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* Content */
.content {
    text-align: center;
    z-index: 10;
    animation: fadeIn 1.5s ease-in;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main Title */
.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Subtitle */
.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    color: #e8e8e8;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Decorative Line */
.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    flex: 1;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.diamond {
    margin: 0 1.5rem;
    font-size: 1.2rem;
    color: #d4af37;
    animation: pulse 2s ease-in-out infinite;
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 2rem auto;
    color: #c0c0c0;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

/* Contact Info */
.contact-info {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1.5s backwards;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: #f0d97c;
    border-bottom: 1px solid #f0d97c;
}

/* Sparkle Animation */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px #d4af37;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #888;
    background: rgba(0, 0, 0, 0.2);
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    .subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .decorative-line::before,
    .decorative-line::after {
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .description {
        font-size: 0.95rem;
    }
}
