:root {
    --bg-color: #F8F4EE;
    --text-dark: #3A3530;
    --primary-color: #D39D8D;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-color);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-left: 50px;
}

.logo span {
    font-size: 0.5rem;
    letter-spacing: 4px;
    font-family: var(--font-body);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-icons span {
    margin-left: 1rem;
    cursor: pointer;
}

.hero-section {
    display: flex;
    padding: 0 0 0 5%; 
    min-height: calc(100vh - 100px); 
    align-items: stretch; 
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5%; 
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.italic-text {
    font-style: italic;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #b58375;
}

.btn-secondary {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 2px;
}

.features {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.feature-item .icon {
    font-size: 1.5rem;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.hero-image-container {
    flex: 1.1; 
    position: relative;
}

.arch-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none; 
    border-radius: 500px 0 0 0; 
    overflow: hidden;
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-card {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.promo-img {
    width: 60px; 
    height: 60px;
    border-radius: 8px;
    overflow: hidden; 
    flex-shrink: 0; 
}

.promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}

.promo-text p {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.promo-text span {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-bottom: 5px;
}
.promo-text a {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
}
/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        padding: 1rem 5%;
        flex-wrap: wrap;
    }
    
    .logo {
        margin-left: 0;
        font-size: 1.2rem;
    }
    
    .navbar > div.mx-5 {
        margin: 0 !important; 
    }
    
    .nav-links {
        order: 3; 
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap; 
        gap: 15px;
        margin-top: 1rem;
    }
    
    .nav-links a {
        margin: 0;
        font-size: 0.85rem;
    }

    .hero-section {
        flex-direction: column;
        padding: 2rem 5% 0; 
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        padding-bottom: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .main-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .cta-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .features {
        justify-content: center;
        flex-wrap: wrap; 
        margin-bottom: 2rem;
    }
    .hero-image-container {
        width: 100%;
        height: 500px; 
        position: relative;
        margin-top: 1rem;
        display: block;
    }
    
    .arch-box {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 250px 250px 0 0; 
    }
    
    .promo-card {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%); 
        width: 90%;
        max-width: 320px;
        justify-content: center;
    }
}