@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500&display=swap');

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #e8e8f4;
    color: #333;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(231, 228, 244, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(231, 228, 244, 0.4) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    /* margin-bottom: 30px; */
    width: 100%;
}

.logo {
    width: 400px;
    height: auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 0;
    position: relative;
    width: 100%;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(127, 15, 27, 0.05);
    z-index: -1;
}

.main-content::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(232, 232, 244, 0.5);
    z-index: -1;
}

.coming-soon {
    margin-bottom: 60px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 100%; */
}

.coming-soon h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #7f0f1b;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.coming-soon h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7f0f1b, transparent);
}

.coming-soon p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 600px;
}

.countdown-item {
    background-color: #e8e8f4;
    border-radius: 12px;
    padding: 20px;
    width: 100px;
    box-shadow: 0 6px 15px rgba(127, 15, 27, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(127, 15, 27, 0.12);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #7f0f1b;
}

.countdown-item .number {
    font-size: 2.2rem;
    font-weight: 600;
    color: #7f0f1b;
    font-family: 'Cormorant Garamond', serif;
}

.countdown-item .label {
    font-size: 0.85rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.newsletter-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.newsletter {
    max-width: 600px;
    width: 100%;
    position: relative;
}

.newsletter form {
    display: flex;
    width: 100%;
    box-shadow: 0 4px 20px rgba(127, 15, 27, 0.1);
    border-radius: 50px;
    overflow: hidden;
    height: 60px;
}

.newsletter input {
    flex: 1;
    padding: 0 25px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    background-color: white;
    height: 100%;
}

.newsletter button {
    background-color: #7f0f1b;
    color: white;
    border: none;
    padding: 0 35px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    height: 100%;
    min-width: 160px;
    white-space: nowrap;
}

.newsletter button:hover {
    background-color: #66091b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(127, 15, 27, 0.2);
}

/* Custom curved divider styles */
.curve-divider {
    position: relative;
    height: 150px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.curve-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    transform: rotateX(180deg);
}

.curve-divider .shape-fill {
    fill: #7f0f1b;
}

.about-section {
    background-color: #7f0f1b;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: -2px;
    /* Fix any potential gap */
}

.about-section::before {
    /* content: ''; */
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(232, 232, 244, 0.1);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(232, 232, 244, 0.05);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #e8e8f4;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #e8e8f4;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content p:last-of-type {
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    color: #e8e8f4;
    font-size: 1.25rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 232, 244, 0.3);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #fff;
    background-color: rgba(232, 232, 244, 0.1);
    transform: translateY(-5px);
}

footer {
    background-color: #e8e8f4;
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    width: 100%;
}

.footer-design {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7f0f1b, #e8e8f4, #7f0f1b);
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 3rem;
    }

    .countdown {
        gap: 15px;
    }

    .countdown-item {
        width: 80px;
        padding: 15px;
    }

    .countdown-item .number {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .newsletter button {
        min-width: 140px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .newsletter form {
        height: auto;
        flex-direction: column;
        border-radius: 10px;
        overflow: visible;
        box-shadow: none;
    }

    .newsletter input {
        width: 100%;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(127, 15, 27, 0.1);
        margin-bottom: 15px;
    }

    .newsletter button {
        width: 100%;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(127, 15, 27, 0.1);
    }

    .curve-divider {
        height: 80px;
    }

    .curve-divider svg {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .countdown-item {
        width: calc(50% - 15px);
        max-width: 120px;
    }
}

/* Animation keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.design-element {
    position: absolute;
    z-index: -1;
    opacity: 0.6;
}

.design-element.top-right {
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(127, 15, 27, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.design-element.bottom-left {
    bottom: 15%;
    left: 5%;
    width: 100px;
    height: 100px;
    background-color: rgba(232, 232, 244, .5);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

/* Decorative elements */
.fancy-border {
    position: relative;
}

.fancy-border::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(127, 15, 27, 0.15);
    border-radius: 15px;
    z-index: -1;
}


/* Form loader and message styling with brand colors */
.notification-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    max-width: 100%;
    animation: fadeIn 0.3s ease;
}

.success-message {
    color: #7f0f1b;
    background-color: #e8e8f4;
    border: 1px solid #7f0f1b;
}

.error-message {
    color: #7f0f1b;
    background-color: rgba(127, 15, 27, 0.1);
    border: 1px solid #7f0f1b;
}

button[type="submit"] .fa-spinner {
    margin-right: 5px;
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}