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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9E3E8; /* Blush Pink */
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Container */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: calc(100vh - 120px);
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Logo Styles */
.logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo svg {
    filter: drop-shadow(0 4px 8px rgba(156, 63, 95, 0.1));
    transition: transform 0.3s ease;
}

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

/* Typography */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #9C3F5F; /* Deep Rose */
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(156, 63, 95, 0.1);
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #9C3F5F, #C7A55A); /* Deep Rose to Gold */
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #C7A55A; /* Gold */
    margin-bottom: 2rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.coming-soon {
    font-size: 1.3rem;
    color: #9C3F5F; /* Deep Rose */
    margin-bottom: 3rem;
    font-weight: 500;
    background: linear-gradient(135deg, #FFF8F2, #F9E3E8);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid #C7A55A; /* Gold border */
    box-shadow: 0 4px 15px rgba(156, 63, 95, 0.15);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 165, 90, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Button Styles */
.buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #9C3F5F; /* Deep Rose */
    color: white;
    text-decoration: none;
    border: 2px solid #C7A55A; /* Gold border */
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(156, 63, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #D19AA6; /* Dusty Rose */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 63, 95, 0.3);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    background-color: #FFF8F2; /* Soft Ivory */
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #C7A55A, transparent); /* Gold dividers */
    margin: 1rem 0;
}

.footer-info {
    text-align: center;
    color: #666;
}

.address, .phone {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 300;
}

.address {
    color: #9C3F5F; /* Deep Rose */
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 1.2rem 2rem;
    margin: 1rem auto;
    max-width: 500px;
    border: 2px solid transparent;
    border-radius: 30px;
    background: linear-gradient(#FFF8F2, #FFF8F2) padding-box,
                linear-gradient(135deg, #C7A55A, #9C3F5F, #C7A55A) border-box;
    box-shadow: 
        0 4px 20px rgba(156, 63, 95, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.address:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(156, 63, 95, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.address::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C7A55A, transparent);
    opacity: 0.6;
}
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #C7A55A; /* Gold border */
    border-radius: 20px;
    background-color: rgba(199, 165, 90, 0.1); /* Light gold background */
    display: inline-block;
    box-shadow: 0 2px 8px rgba(199, 165, 90, 0.2);
    position: relative;
    overflow: hidden;
}

.address::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 165, 90, 0.15), transparent);
    animation: addressShimmer 4s infinite;
}

@keyframes addressShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.phone {
    color: #9C3F5F; /* Deep Rose */
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        min-height: calc(100vh - 100px);
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .logo svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .address, .phone {
        font-size: 0.9rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.logo {
    animation-delay: 0.1s;
}

.main-title {
    animation-delay: 0.2s;
}

.tagline {
    animation-delay: 0.3s;
}

.coming-soon {
    animation-delay: 0.4s;
}

.buttons {
    animation-delay: 0.5s;
}

/* Accessibility */
.btn:focus {
    outline: 2px solid #C7A55A;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}