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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #0066cc;
}

.hero {
    margin-top: 60px;
    text-align: center;
    padding: 2rem;
}


h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    color: #222;
}

h2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
}
.container p{
    text-align: justify;
}

.bio h2{
    text-align: center;
}

header {
    
    background-color: #c0ccbe;
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid #ddd;
}

.profile-pic {
    max-width: 160px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

blockquote {
    font-style: italic;
    margin-top: 1rem;
    color: #555;
}

section {
    padding: 2rem 0;
    border-bottom: 2px solid #ddd;
}

.price-table ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-table li {
    padding: 0.3rem 0;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}
.contact h3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    font-size: 0.9rem;
    color: #777;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

form input, form textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

form button {
    padding: 0.8rem;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #555;
}

.map-container {
    margin-top: 1rem;
    border-radius: 5px;
    overflow: hidden;
}
.burger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #ddd;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}
.hero {
    
    background-color: #c0ccbe;
}
.bio {
    background-color: #fff0f0;
}

.prices {
    background-color: #fffaf0;
}

.contact {
    background-color: #c0ccbe;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}
.testimonials {
    background-color: #c0ccbe;
    padding: 4rem 1.5rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 836px;
    margin: 0 auto;
}

.testimonial {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
    color: #555;
}

.floating-contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #46574a;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 500;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-contact-button:hover {
    background-color: #406949;
    transform: scale(1.05);
}

/* Gallery Styles */
.gallery {
    background-color: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.gallery-item p {
    padding: 1.5rem;
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-item {
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0.01));
    pointer-events: none;
    z-index: 1;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item h3 {
        font-size: 1.2rem;
        padding: 1rem 1rem 0.5rem 1rem;
    }
    
    .gallery-item p {
        padding: 1rem;
    }
    
    .gallery-image,
    .gallery-video {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gallery-image,
    .gallery-video {
        height: 350px;
    }
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.lang-btn {
    background: none;
    border: 2px solid #333;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 45px;
}

.lang-btn:hover {
    background-color: #333;
    color: white;
}

.lang-btn.active {
    background-color: #333;
    color: white;
}

/* Responsive language switcher */
@media (max-width: 768px) {
    .language-switcher {
        position: static;
        transform: none;
        margin-left: 1rem;
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        position: static;
        transform: none;
        margin-left: 0.5rem;
        gap: 0.2rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        min-width: 35px;
    }
}
