:root {
    --color-maroon: #6B1D2A;
    --color-maroon-dark: #4A141D;
    --color-maroon-light: #8B2636;
    --color-beige: #F5F1E7;
    --color-beige-dark: #EAE2D3;
    --color-text-dark: #2C2C2C;
    --color-text-light: #F5F1E7;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #128C7E;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-beige);
    color: var(--color-text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 241, 231, 0.8) 0%, rgba(234, 226, 211, 0.95) 100%);
    z-index: -1;
}

/* Add a subtle texture or pattern to the background if needed */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%236b1d2a" fill-opacity="0.03" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    z-index: -2;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-maroon);
}

.logo img {
    border-radius: 8px; /* Slightly soften edges just in case */
}

.logo-mark {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-maroon);
    border-radius: 50%;
    background-color: transparent;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
}

.logo-text small {
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--color-maroon);
    border: 1px solid var(--color-maroon);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--color-maroon);
    color: var(--color-beige);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 29, 42, 0.2);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    flex: 1;
    text-align: center;
}

@media (min-width: 992px) {
    .main-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.announcement {
    flex: 1;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

.subtitle {
    color: var(--color-maroon-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-maroon-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.action-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 992px) {
    .action-area {
        align-items: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.btn i {
    font-size: 1.3rem;
}

.image-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: fadeInRight 1s ease-out;
}

.saree-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(74, 20, 29, 0.15);
}

.saree-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-beige);
    border-radius: 10px;
    margin: 10px;
    z-index: 1;
    pointer-events: none;
}

.saree-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.saree-image-container:hover .saree-img {
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 2rem 0 1rem;
    color: #777;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    header {
        flex-direction: row;
        gap: 1rem;
    }

    .logo img {
        max-height: 70px !important;
    }
    
    .saree-image-container {
        max-width: 400px;
    }
}
