@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

body {
    background: #eee7dd;
    font-family: 'Inter', sans-serif;
    color: #2f2419;
}

/* NAVBAR */
.navbar {
    background: #f8f3eb !important;
    padding: 1rem 0;
    border-bottom: 1px solid #d4c4b2;
    box-shadow: 0 2px 12px #0000000a;
}

.navbar .container-fluid {
    padding-left: 0;
    padding-right: 3rem;
}

/* LEFT ALIGN */
.navbar-collapse {
    justify-content: flex-start;
}

.navbar-nav {
    gap: 0.4rem;
    align-items: center;
}

/* NAV LINKS */
.navbar .nav-link {
    font-family: 'Inter', sans-serif;
    color: #2f2419;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 1.1rem !important;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: #8b5e34;
    background: #f1e7da;
}

.navbar .nav-link.active {
    color: #8b5e34;
    font-weight: 600;
    background: #f1e7da;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.35rem;
    height: 2px;
    background: #8b5e34;
    border-radius: 2px;
}

/* BRAND / LOGO TEXT IF USED */
.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2f2419 !important;
    letter-spacing: 0.03em;
}

/* TOGGLER */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* MOBILE */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #d4c4b2;
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar .nav-link.active::after {
        display: none;
    }
}

.hero-carousel {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px #00000014;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 75vh;
    /* object-fit: cover; */
    /* filter: brightness(0.72); */
}

/* Tablet */
@media (max-width: 991px) {
    .hero-carousel .carousel-item img {
        height: auto;
        object-fit: contain;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-carousel .carousel-item img {
        height: auto;
        object-fit: contain;
    }
}

.hero-carousel .carousel-caption {
    bottom: 18%;
    text-align: left;
    left: 8%;
    right: auto;
    max-width: 600px;
}

.hero-carousel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.hero-carousel p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #f3ede5;
    max-width: 500px;
}

.hero-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
}

.hero-carousel .carousel-indicators .active {
    opacity: 1;
    background-color: #d4b08a;
}

.feature-card {
    background: #f8f3eb;
    border: 1px solid #d4c4b2;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 8px 24px #00000008;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px #00000010;
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2f2419;
    margin-bottom: 1rem;
}

.feature-card p,
.major-works-list {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #4b3a28;
    flex-grow: 1;
}

.major-works-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.major-works-list li {
    margin-bottom: 0.75rem;
}

.feature-link {
    text-decoration: none;
    color: #8b5e34;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: auto;
    transition: 0.3s ease;
}

.feature-link:hover {
    color: #6e4724;
}

.site-footer {
    background: #2f2419;
    color: #e8dccf;
    margin-top: 4rem;
}

.site-footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8f3eb;
}

.site-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #d8c7b5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a,
.footer-contact-link {
    text-decoration: none;
    color: #d8c7b5;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact-link:hover {
    color: #d4b08a;
}

.footer-bottom {
    border-top: 1px solid #4a3928;
    font-size: 0.88rem;
    color: #b8a38e;
}

.footer-credit {
    color: #d4b08a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit:hover {
    color: #f8f3eb;
}
