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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2C2C2C;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    overflow-x: hidden;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1A1A1A;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Content */
.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.8rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1A1A1A;
    position: relative;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #2C3E50, #34495E);
    border-radius: 1px;
}

hr.section-title {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #2C3E50, #34495E);
    border-radius: 1px;
    width: 60px;
    margin: 35px auto;
    position: relative;
}

/* Navigation Bar */
.main-navbar {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand .brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #2C3E50;
    border-bottom-color: #2C3E50;
    transform: translateY(-1px);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Hide mobile toggle on desktop */
@media (min-width: 769px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2C3E50;
        padding: 15px 0;
        border-bottom: 2px solid transparent;
    }
    
    .nav-link:hover {
        border-bottom-color: #2C3E50;
        transform: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(44, 62, 80, 0.4), rgba(26, 26, 26, 0.5));
    z-index: -1;
}

.hero-content {
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 2.1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.01em;
    color: #F5F5F5;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: #FFFFFF;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.01em;
    text-transform: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495E, #2C3E50);
}

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2C3E50, transparent);
}

.about-text {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #4A4A4A;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.about-image {
    text-align: center;
    margin-top: 40px;
}

.image-caption {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #FAFAFA;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2C3E50, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.service-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    border-color: #2C3E50;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #6C6C6C;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2C3E50, transparent);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.program-card {
    background: #FFFFFF;
    padding: 40px 35px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2C3E50;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    border-color: #2C3E50;
}

.program-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.program-list {
    list-style: none;
}

.program-list li {
    padding: 10px 0;
    border-bottom: 1px solid #F0F0F0;
    position: relative;
    padding-left: 25px;
    color: #6C6C6C;
    font-size: 1rem;
    line-height: 1.6;
}

.program-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2C3E50;
    font-weight: bold;
    font-size: 1.2rem;
}

.program-list li.special {
    background: #2C3E50;
    color: #FFFFFF;
    padding: 15px 20px 15px 50px;
    border-radius: 0;
    margin-top: 15px;
    font-weight: 600;
    border: none;
    position: relative;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.program-list li.special:before {
    content: '★';
    color: #FFFFFF;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: #FAFAFA;
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2C3E50, transparent);
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 40px 35px;
    background: #FFFFFF;
    border-radius: 0;
    border-left: 4px solid #2C3E50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
}

.trust-item h3 {
    font-size: 2rem;
    color: #2C3E50;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.trust-image {
    text-align: center;
    margin-top: 40px;
}

.profile-image {
    width: 500px;
    height: 500px;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    border: 3px solid #2C3E50;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.3);
}

@media (max-width: 768px) {
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

/* Ceramic Decoration Full Width Sections */
.ceramic-decoration-full {
    padding: 0;
    background: white;
    overflow: hidden;
}

.ceramic-full-width {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.ceramic-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.ceramic-full-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .ceramic-full-width {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .ceramic-full-width {
        height: 120px;
    }
}

/* Practical Section */
.practical {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.practical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2C3E50, transparent);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.practical-item {
    background: #FFFFFF;
    padding: 35px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    position: relative;
}

.practical-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.1);
    border-color: #2C3E50;
}

.practical-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.practical-item p {
    color: #6C6C6C;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #FAFAFA;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2C3E50, transparent);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-link {
    color: #2C3E50;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.contact-link:hover {
    color: #34495E;
    border-bottom-color: #34495E;
    transform: translateY(-1px);
}

.contact-method p {
    color: #6C6C6C;
    line-height: 1.6;
    font-size: 1rem;
}

.booking-widget {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 500px;
    border: 1px solid #E5E5E5;
    position: relative;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2C3E50;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: #FFFFFF;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #34495E, transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.footer-nav a:hover {
    color: #E5E5E5;
    border-bottom-color: #E5E5E5;
    transform: translateY(-1px);
}

.footer-contact {
    display: flex;
    gap: 20px;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 0;
    background: transparent;
}

.footer-contact a:hover {
    color: #2C3E50;
    background: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #E5E5E5;
    font-weight: 400;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 3.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .services-grid,
    .programs-grid,
    .practical-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card,
    .program-card,
    .practical-item {
        padding: 35px 25px;
    }
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in p {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FAFAFA;
}

::-webkit-scrollbar-thumb {
    background: #2C3E50;
    border-radius: 4px;
    border: 1px solid #FAFAFA;
}

::-webkit-scrollbar-thumb:hover {
    background: #34495E;
}
