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

/* Custom Fonts */
@font-face {
    font-family: 'Adamant BG';
    src: url('assets/fonts/AdamantBG-Italic.woff2') format('woff2'),
         url('assets/fonts/AdamantBG-Italic.woff') format('woff'),
         url('assets/fonts/AdamantBG-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    --gold: #AB844E;
    --dark-blue: #243646;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --heading-size: 30px;
    --body-text-size: 19px;
    --tagline-size: 35px;
    --max-width: 1440px;
    --boxed-padding: 144px;
    --content-width: 1152px; /* 1440px - (144px * 2) */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Global Paragraph Styles */
p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: var(--body-text-size); /* 19px */
    font-weight: 400;
    line-height: 1.5;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--boxed-padding);
}

/* Header Component */
.main-header {
    background: #FFFFFF;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.05); */
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--boxed-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 65px;
    width: auto;
    display: block;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #999999;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #666666;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #999999;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: #666666;
}

.header-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease;
    opacity: 0.6;
}

.header-social a:hover {
    opacity: 1;
}

.header-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.3s ease;
}

.header-social a:hover img {
    filter: grayscale(0%) brightness(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    padding: 30px 40px;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-social {
    display: flex;
    gap: 20px;
    padding: 30px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.mobile-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Old Navigation - Keep for backwards compatibility */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.nav-logo i {
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
}

.nav-icons i:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* New Hero Section */
.hero-section {
    margin-top: 86px;
    padding: 60px 0;
    background: #FFFFFF;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--boxed-padding);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    align-items: start;
}

.hero-left {
    padding-top: 30px;
}

.hero-star-icon {
    margin-bottom: 15px;
}

.hero-star-icon img {
    height: 45px;
    width: auto;
}

.hero-divider {
    width: 35px;
    height: 2px;
    background: #AB844E;
    border: none;
    margin: 0 0 70px 0;
}
/* duplicate from hero div - Nikola remove one */
.architecture-divider {
    width: 35px;
    height: 2px;
    background: #AB844E;
    border: none;
    margin: 0 0 70px 0;
}

.hero-title {
    font-family: 'Source Serif 4', serif;
    font-size: 50px;
    font-weight: 400;
    color: #AB844E;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-welcome-box {
    background: #AB844E;
    color: #FFFFFF;
    width: 632px;
    height: 250px;
    padding: 82px 73px 41px 53px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    margin-right: -100px;
    box-sizing: border-box;
    display: flex;
    align-items: end;
    justify-content: left;
}

.hero-welcome-box p {
    font-family: 'Source Serif 4', serif;
    font-size: var(--heading-size);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.hero-description {
    margin-bottom: 35px;
}

.hero-description p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: var(--body-text-size);
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: 'Adamant BG', serif;
    font-size: var(--tagline-size);
    font-weight: 400;
    color: #AB844E;
    font-style: italic;
    line-height: 1.4;
    margin-top: 30px;
}

.hero-right {
    position: relative;
}

.hero-right img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Old Hero Section - Keep for backwards compatibility */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f6f3 0%, #ffffff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-text {
    padding-top: 40px;
}

.star-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-box {
    background: var(--gold);
    color: var(--white);
    padding: 30px;
    margin: 30px 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-box p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Architecture Section */
.architecture {
    padding: 100px 0;
    background: var(--white);
}

.architecture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 93px;
    align-items: start;
}

.architecture-image img {
    width: 628px;
    height: auto;
    border-radius: 2px;
}

.architecture-text {
    padding-top: 0;
}

.section-number {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 300;
    margin-bottom: 20px;
}

.architecture h2 {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 30px;
}

.architecture-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f6f3 100%);
}

.features-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.features-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    background: var(--gold);
    color: var(--white);
    padding: 40px;
    margin: 30px 0;
    list-style: none;
}

.features-list li {
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.features-icons {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.feature-icon {
    flex: 1;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: var(--gold);
}

.feature-icon p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.features-details {
    background: var(--gold);
    color: var(--white);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-item {
    text-align: center;
}

.icon-circle-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--white);
}

.detail-item p {
    font-size: 12px;
    line-height: 1.5;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Materials Section */
.materials {
    padding: 158px 0 100px 0;
    background: var(--white);
    width: 100%;
}

.materials-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.materials-left {
    width: 688px;
    padding-left: 60px;
    margin: 0 auto;
}

.materials-title {
    font-family: 'Source Serif 4', serif;
    font-size: 40px;
    font-weight: 400;
    color: #AB844E;
    margin-bottom: 50px;
    line-height: 1.2;
}

.materials-description p {
    margin-bottom: 30px;
}

.materials-description p:last-child {
    margin-bottom: 0;
}

.materials-right {
    display: flex;
    align-items: flex-start;
    margin-right: 0;
    padding-top: 25px;
    flex-shrink: 0;
}

.materials-divider {
    width: 588px;
    height: 2px;
    background: #AB844E;
    border: none;
    margin: 0;
}

.materials-image {
    width: 100%;
    margin-top: 100px;
}

.materials-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #FFFFFF;
}

.gallery-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--boxed-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 100px 0 30px 0;
    background: var(--dark-blue);
    color: var(--white);
}

.contact h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

.contact-team {
    display: flex;
    justify-content: space-evenly;
    gap: 80px;
    max-width: 770px;
    margin: 0 auto;
    padding-bottom: 60px;
}


.team-member {
    text-align: center;
}

.member-photo {
    width: 167px;
    height: 167px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-member p {
    font-size: 14px;
    opacity: 0.8;
}

.contact-form-wrapper {
    max-width: 770px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0 0 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 0;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.contact-form textarea {
    min-height: 80px;
    resize: none;
    margin-bottom: 40px;
}

.contact .privacy-checkbox-label {
    display: grid !important;
    grid-template-columns: 5% 95% !important;
    align-items: start !important;
    margin-bottom: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact .privacy-checkbox {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
    accent-color: var(--gold);
    border-radius: 50% !important;
    justify-self: start !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    position: relative;
    margin-top: 5px;
}

.contact .privacy-checkbox:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.contact .privacy-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.contact .privacy-checkbox-label span {
    padding-left: 0;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 60px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    align-self: center;
}

.submit-btn:hover {
    background-color: #d7a461;
    border-color: #d7a461;
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

.footer-divider {
    flex: 1;
    max-width: 400px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0;
}

.footer-divider:first-child {
    margin-right: auto;
}

.footer-divider:last-child {
    margin-left: auto;
}

.footer-logo i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 24px;
    line-height: 1.2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-column h4 {
    font-size: 29px;
    margin-bottom: 15px;
    color: var(--gold);
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
    padding-bottom: 10px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    max-width: 200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --boxed-padding: 80px;
    }

    .hero-container {
        gap: 60px;
    }

    .hero-welcome-box {
        width: 550px;
        height: 220px;
        padding: 30px 35px;
    }

    .hero-welcome-box p {
        font-size: 26px;
    }

    .materials-left {
        width: 500px;
        margin-left: 80px;
    }

    .materials-divider {
        width: 450px;
    }

    .materials-title {
        font-size: 42px;
    }
}

/* Mobile Landscape & Small Tablet (768px - 968px) */
@media (max-width: 968px) {
    :root {
        --boxed-padding: 40px;
    }

    /* New Header Responsive */
    .header-container {
        padding: 0 40px;
    }

    .header-nav {
        display: none;
    }

    .header-social {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Old Navigation */
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* New Hero Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }

    .hero-welcome-box {
        margin-right: 0;
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-welcome-box p {
        font-size: 24px;
    }

    .hero-tagline {
        font-size: 28px;
    }

    .hero-content,
    .architecture-content,
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .architecture-text {
        order: -1;
    }

    .architecture-image img {
        width: 100%;
        height: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-team {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-icons {
        flex-direction: column;
    }

    .features-details {
        grid-template-columns: 1fr;
    }

    .materials-container {
        flex-direction: column;
        gap: 40px;
    }

    .materials-left {
        width: 100%;
        margin: 0;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .materials-right {
        margin-left: 40px;
    }

    .materials-divider {
        width: 100%;
        max-width: 400px;
    }

    .materials-title {
        font-size: 36px;
    }

    .hero-section {
        margin-top: 0px;
    }

    .architecture {
        padding: 50px 0;
    }

    .materials {
        padding: 50px 0 0 0;
    }

    .materials-image {
        margin-top: 0px;
    }
}

/* Mobile Portrait (320px - 768px) */
@media (max-width: 768px) {
    :root {
        --boxed-padding: 20px;
    }

    .header-container,
    .hero-container,
    .container {
        padding: 0 20px;
    }

    .hero h1,
    .hero-title {
        font-size: 28px;
    }

    .architecture h2,
    .materials-title,
    .contact h2 {
        font-size: 28px;
    }

    .hero-welcome-box p {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 24px;
    }

    .hero-description p {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-details {
        grid-template-columns: 1fr;
    }

    .materials-left {
        padding: 0 20px;
    }

    .materials-right {
        margin-left: 20px;
    }

    .materials-divider {
        max-width: 300px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --boxed-padding: 16px;
    }

    .header-container,
    .hero-container,
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-welcome-box {
        padding: 20px;
        min-height: 160px;
    }

    .hero-welcome-box p {
        font-size: 18px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-description p {
        font-size: 15px;
    }

    .header-logo img,
    .hero-star-icon img {
        height: 35px;
    }

    .materials-left {
        padding: 0 16px;
    }

    .materials-right {
        margin-left: 16px;
    }

    .materials-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .materials-divider {
        max-width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero,
.architecture,
.features,
.materials,
.gallery,
.contact {
    animation: fadeIn 0.8s ease-out;
}
