@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --sky-blue: #D7E2E8;
    --teal-gray: #B8CCCD;
    --charcoal: #4F5A5E;
    --sage: #C4D0B8;
    --white: #FFFFFF;
    --light-gray: #F8FAFB;
    --medium-gray: #E8EDF0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(79, 90, 94, 0.08);
    --shadow-md: 0 4px 20px rgba(79, 90, 94, 0.12);
    --shadow-lg: 0 8px 40px rgba(79, 90, 94, 0.15);
}

body {
    font-family: 'Figtree', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--teal-gray) 100%);
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1) blur(3px);
    mix-blend-mode: multiply;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* color: var(--charcoal); */
    z-index: 2;
}

.hero-overlay h1 {
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: white;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 1.2rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.navbar-scrolled {
    padding: 0.8rem 2rem;
    box-shadow: var(--shadow-sm);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-gray) 0%, var(--sage) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--charcoal);
    font-weight: 600;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--medium-gray);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    margin: 4px auto;
    transition: var(--transition);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 1100;
    padding: 5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--medium-gray);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.3rem;
    color: var(--charcoal);
    text-decoration: none;
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition);
    font-weight: 500;
}

.mobile-nav a:hover {
    color: var(--teal-gray);
    padding-left: 1rem;
}

.closebtn {
    position: absolute;
    top: 1.8rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.closebtn:hover {
    background: var(--medium-gray);
    color: var(--charcoal);
}

.introduction {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-gray), transparent);
}

.section-title {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-gray), var(--sage));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.intro-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
    text-align: center;
    color: #5A666A;
    line-height: 1.8;
    font-weight: 400;
}

.gallery-preview {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.preview-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-gray);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card:hover .card-image img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(79, 90, 94, 0.1));
}

.card-content {
    padding: 2.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.card-content p {
    color: #6B787D;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    background: var(--sage);
    border-radius: 8px;
    transition: var(--transition);
    align-self: flex-start;
    border: 1px solid transparent;
}

.card-button:hover {
    gap: 1rem;
    background: var(--teal-gray);
    color: var(--charcoal);
    transform: translateX(4px);
    border-color: var(--medium-gray);
}

footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3F484C 100%);
    color: var(--white);
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-gray), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.footer-about h3,
.footer-newsletter h3,
.footer-social h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-gray), var(--sage));
    margin: 1rem 0 1.5rem;
    border-radius: 1px;
}

.footer-about p {
    color: #D7E2E8;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-size: 1rem;
}

.signature {
    font-style: italic;
    color: var(--teal-gray);
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.newsletter-form input {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--teal-gray);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(184, 204, 205, 0.2);
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--teal-gray) 0%, var(--sage) 100%);
    color: var(--charcoal);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(184, 204, 205, 0.3);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin: 1.8rem 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--teal-gray);
    color: var(--charcoal);
    transform: translateY(-3px);
    border-color: transparent;
}

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #B8CCCD;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .hero {
        height: 65vh;
        min-height: 500px;
    }

    .hero-overlay {
        padding: 2rem;
        width: 95%;
        margin: 0 auto;
    }

    .container {
        padding: 0 1.5rem;
    }

    .introduction,
    .gallery-preview {
        padding: 4rem 0;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card-content {
        padding: 1.8rem;
    }

    .hero-overlay {
        padding: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }
}