* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #F5F5F5;
    background: linear-gradient(135deg, #1A1A1A 0%, #3A3F41 100%);
    background-attachment: fixed;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
}

.hamburger {
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    background: #F5F5F5;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* Canvas Menu */
.canvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #E8ECEF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 999;
    padding-top: 60px;
}

.canvas-menu.active {
    transform: translateX(0);
}

.canvas-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}

.canvas-links li {
    margin: 20px 0;
}

.canvas-links a {
    color: #1A1A1A;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.canvas-links a:hover {
    color: #C0A080;
}

.canvas-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
}

.social-icon i {
    color: #1A1A1A;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icon:hover i {
    color: #C0A080;
}

.contact-text {
    color: #1A1A1A;
    font-size: 18px;
    margin-left: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    top: -50px;
    left: 20px;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 60px;
    font-weight: 600;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.hero-text h1:hover {
    transform: translateY(-5px);
}

.hero-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 400;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.hero-text h2:hover {
    transform: translateY(-5px);
}

.hero-text p {
    font-size: 22px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(26, 26, 26, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-left: 20px;
}

.hero-contact p {
    font-size: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: #C0A080;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-button:hover {
    background: #F5F5F5;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 100px 40px;
    background: linear-gradient(135deg, #3A3F41 0%, #1A1A1A 100%);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(58, 63, 65, 0), rgba(26, 26, 26, 0.2));
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 50%;
    padding-right: 40px;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-text h2:hover {
    transform: translateY(-3px);
}

.underline {
    width: 80px;
    height: 4px;
    background: #C0A080;
    margin: 0 auto 40px;
    transition: width 0.3s ease;
}

.about-text h2:hover + .underline {
    width: 120px;
}

.about-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-image {
    width: 50%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy {
    padding: 120px 40px;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    position: relative;
    min-height: 800px;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    z-index: 0;
}

.philosophy h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.philosophy h2:hover {
    transform: translateY(-3px);
}

.philosophy h2:hover + .underline {
    width: 120px;
}

.philosophy-content {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.philosophy-item {
    background: rgba(245, 245, 245, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.philosophy-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-item i {
    color: #C0A080;
    font-size: 40px;
    margin-bottom: 20px;
}

.philosophy-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.philosophy-item p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 100px 40px;
    background: #1A1A1A;
    text-align: center;
    position: relative;
    transition: background 0.5s ease;
}

.gallery:hover {
    background: #3A3F41;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0), rgba(232, 236, 239, 0.2));
}

.gallery h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery h2:hover {
    transform: translateY(-3px);
}

.gallery h2:hover + .underline {
    width: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-areas: 
        "left top-right"
        "left bottom-right";
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-item.large {
    grid-area: left;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item.large img {
    height: 800px;
}

.gallery-item:not(.large) img {
    height: 380px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: #F5F5F5;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 40px;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    position: relative;
    min-height: 800px;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    z-index: 0;
}

.why-choose-us h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.why-choose-us h2:hover {
    transform: translateY(-3px);
}

.why-choose-us h2:hover + .underline {
    width: 120px;
}

.why-content {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-item {
    background: rgba(245, 245, 245, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item i {
    color: #C0A080;
    font-size: 40px;
    margin-bottom: 20px;
}

.why-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.why-item p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 120px 40px;
    background: #E8ECEF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/always-grey.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.services h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.services h2:hover {
    transform: translateY(-3px);
}

.services h2:hover + .underline {
    width: 120px;
}

.services-grid {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    z-index: 1;
}

.services-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.services-row-offset {
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #3A3F41;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 1;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(192, 160, 128, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    color: #F5F5F5;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.service-card:hover h3 {
    transform: translateY(-5px);
}

.service-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #F5F5F5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.service-card ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #F5F5F5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-card:hover p,
.service-card:hover ul {
    transform: translateY(-5px);
}

/* Contact Section */
.contact {
    padding: 100px 40px;
    background: #1A1A1A;
    text-align: center;
    position: relative;
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact h2:hover {
    transform: translateY(-3px);
}

.contact h2:hover + .underline {
    width: 120px;
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-info p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info p a {
    color: #F5F5F5;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info p a:hover {
    color: #C0A080;
    transform: translateY(-3px);
}

.contact-info i {
    color: #C0A080;
    margin-right: 10px;
    font-size: 24px;
}

.contact-socials {
    display: flex;
    gap: 30px;
}

.contact-socials .social-icon {
    font-size: 40px;
    color: #F5F5F5;
    transition: transform 0.4s ease, color 0.4s ease;
}

.contact-socials .social-icon:hover {
    transform: scale(1.3) rotate(15deg);
    color: #C0A080;
}

/* Footer */
.footer {
    padding: 40px 20px;
    background: #3A3F41;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.footer-logo h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    color: #C0A080;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-links li a {
    color: #F5F5F5;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C0A080;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-links li a:hover {
    color: #C0A080;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #F5F5F5;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    transform: scale(1.2);
    color: #C0A080;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 245, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 16px;
    color: #F5F5F5;
}

/* Section Animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 20px;
        top: 0;
        left: 0;
    }

    .hero-text h1 { font-size: 48px; }
    .hero-text h2 { font-size: 28px; }
    .hero-text p { font-size: 18px; }
    .hero-contact { flex-direction: column; align-items: flex-start; margin-left: 0; }
    .hero-contact p { font-size: 16px; }
    .contact-button { font-size: 18px; padding: 12px 24px; }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-text h2 { font-size: 36px; }
    .about-text p { font-size: 18px; }

    .about-image {
        width: 100%;
    }

    .about-image img {
        height: 300px;
    }

    .philosophy h2 { font-size: 36px; }

    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .philosophy {
        min-height: auto;
    }

    .philosophy-item i { font-size: 32px; }
    .philosophy-item h3 { font-size: 24px; }
    .philosophy-item p { font-size: 18px; }

    .gallery h2 { font-size: 36px; }

    .gallery-grid {
        grid-template-areas: 
            "left"
            "top-right"
            "bottom-right";
    }

    .gallery-item.large img,
    .gallery-item:not(.large) img {
        height: 300px;
    }

    .gallery-overlay p { font-size: 20px; }

    .styles h2 { font-size: 36px; }

    .style-card h3 { font-size: 24px; }
    .style-card p { font-size: 16px; }

    .why-choose-us h2 { font-size: 36px; }

    .why-content {
        grid-template-columns: 1fr;
    }

    .why-choose-us {
        min-height: auto;
    }

    .why-item i { font-size: 32px; }
    .why-item h3 { font-size: 24px; }
    .why-item p { font-size: 18px; }

    .services h2 { font-size: 36px; }

    .services-row {
        flex-direction: column;
        gap: 20px;
    }

    .services-row-offset {
        flex-direction: column;
        max-width: 100%;
    }

    .service-card {
        min-height: auto;
    }

    .service-image {
        height: 150px;
    }

    .service-card h3 { font-size: 24px; }
    .service-card p { font-size: 16px; }

    .contact h2 { font-size: 36px; }

    .contact-info p { font-size: 18px; }
    .contact-info i { font-size: 20px; }

    .contact-socials .social-icon {
        font-size: 32px;
    }

    .footer-logo h3 { font-size: 24px; }
    .footer-links li a { font-size: 16px; }
    .footer-socials a { font-size: 20px; }
    .footer-bottom p { font-size: 14px; }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}