* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Larken';
    src: url('fonts/Larken Serif Trial/LarkenDEMO-Light.otf') format('opentype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Larken';
    src: url('fonts/Larken Serif Trial/LarkenDEMO-Medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Larken';
    src: url('fonts/Larken Serif Trial/LarkenDEMO-Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

body {
    font-family: 'Larken', serif;
    font-weight: 300;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 2rem;
}

.nav {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .logo {
    width: 41px;
}

.nav .logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #2D3436;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    color: #4A7B6B;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4A7B6B;
    margin: 4px 0;
    transition: 0.3s;
}

.scrolled .mobile-menu span {
    background: #333;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu {
        display: block;
    }

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

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

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

.hero {
    position: relative;
    background: url('hero-bg.png') no-repeat center center;
    min-height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2D3436;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(205, 223, 219, 0.85);
    -webkit-backdrop-filter: grayscale(75%);
    backdrop-filter: grayscale(75%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.logo-container {
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
}

.hero .line {
    width: 128px;
    height: 2px;
    background-color: #2C4043;
}

.hero-logo {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .logo-container {
        max-width: 426px;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-family: 'Larken', serif;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #2D3436;
}

.hero-text p {
    font-family: 'Larken', serif;
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin: 0 auto;
    color: #2D3436;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn {
    text-decoration: none;
    padding: 1rem 2rem;
    font-family: 'Larken', serif;
    font-size: 0.875rem;
    font-weight: lighter;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    border-radius: 10px;
}

.btn-dark {
    background-color: #2D3436;
    color: white;
}

.btn-light {
    background-color: white;
    color: #2D3436;
}

.btn-outline {
    background: none;
    border: 2px solid #2D3436;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: auto;
    z-index: 2;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
        gap: 1.5rem;
    }

    .logo-container {
        max-width: 200px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        /* width: 100%; */
        padding: 0.875rem 1.5rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-arrow {
        width: 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo-container {
        max-width: 250px;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .btn {
        min-width: 180px;
    }
}

.our-story {
    min-height: 100vh;
    background-color: #2C4043;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.our-story-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.our-story h1 {
    font-family: 'Larken', serif;
    font-size: 4rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1.5rem;
}

.our-story .line {
    width: 128px;
    height: 2px;
    background-color: white;
    margin: 0 auto 4rem;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #EFE6E3;
    font-weight: 400;
}

.our-story-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
}

.our-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-story-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .our-story h1 {
        font-size: 2.5rem;
    }
    
    .our-story-text p {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .our-story {
        padding: 3rem 1.5rem;
    }

    .our-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .our-story h1 {
        font-size: 2rem;
    }

    .our-story-text p {
        font-size: 1rem;
    }

    .our-story-image {
        order: -1;
    }
}

.specialties {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #EFE6E3;
    background-size: cover;
    color: #2C4043;
}

.specialties-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.specialties-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.specialties h2 {
    font-family: 'Larken', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.specialties .line {
    width: 128px;
    height: 2px;
    background-color: #2C4043;
    margin: 0 auto 4rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.specialty-card {
    background: linear-gradient(to bottom, #2c404300, #2c4043b4);
    border-radius: 10px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    text-align: left;
}

.specialty-card:hover {
    transform: translateY(-10px);
}

.specialty-image {
    width: 100%;
    height: 350px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-card h3 {
    font-family: 'Larken', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #EFE6E3;
}

.specialty-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #EFE6E3;
}

.specialties .btn-outline {
    border: 2px solid #EFE6E3;
    color: #EFE6E3;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.specialties .btn-outline:hover {
    background: #EFE6E3;
    color: #2D3436;
}

@media (max-width: 1024px) {
    .specialties h2 {
        font-size: 3rem;
    }

    .specialties-grid {
        gap: 1.5rem;
    }

    .specialty-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .specialties {
        padding: 3rem 1.5rem;
    }

    .specialties h2 {
        font-size: 2.5rem;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .specialty-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .specialty-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .specialties h2 {
        font-size: 2rem;
    }

    .specialty-image {
        height: 180px;
    }
}

.visit-us {
    min-height: 100vh;
    background-color: #B9D6D2;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-us-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.visit-us h2 {
    font-size: 4rem;
    font-weight: 400;
    text-align: center;
    color: #2C4043;
    margin-bottom: 1.5rem;
}

.visit-us .line {
    width: 128px;
    height: 2px;
    background-color: #2C4043;
    margin: 0 auto 4rem;
}

.visit-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact-info, .contact-form {
    background-color: #2C4043;
    padding: 3rem;
    color: #EFE6E3;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.25rem;
    color: #EFE6E3;
    margin-top: 0.25rem;
}

.info-item a {
    color: #B9D6D2;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

.working-hours p {
    margin-bottom: 0.5rem;
}

.visit-us .btn {
    background-color: #B9D6D2;
}

.contact-info p {
    color: #B9D6D2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #EFE6E3;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid white;
    color: #2C4043;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A7B6B;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(74, 123, 107, 0.2);
    color: #4A7B6B;
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

#contactForm .btn {
    width: 100%;
}

@media (max-width: 1024px) {
    .visit-us h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .visit-us {
        padding: 3rem 1.5rem;
    }

    .visit-us h2 {
        font-size: 2.5rem;
    }

    .visit-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info, .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .visit-us h2 {
        font-size: 2rem;
    }

    .contact-info, .contact-form {
        padding: 1.5rem;
    }
}

.footer {
    background-color: #2C4043;
    color: #EFE6E3;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #EFE6E3;
}

.footer-brand h3 {
    font-size: 1.5rem;
}

.footer p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    max-width: 400px;
}

.footer-bottom {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #EFE6E3;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-hours {
    text-align: center;
}

.footer-contact {
    text-align: right;
}

.footer-contact a {
    display: block;
    color: #EFE6E3;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #B9D6D2;
}

.copyright {
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 1024px) {
    
    .footer-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .footer-hours, .footer-contact {
        text-align: left;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
