/* 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.6;
    color: #333;
    overflow-x: hidden;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: transparent;
    padding: 100px 0 40px;
    margin-top: 0;
}

.hero-image-full {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
    background: linear-gradient(135deg, #fcfcfd 0%, #f5f6f7 100%);
}

.hero-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.6;
}

.hero-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.hero-logo-center img {
    width: 500px;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-10px) scale(1.05); 
    }
}

.hero-content-below {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.hero-title-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.hero-title {
    color: #000000;
    margin-bottom: 0;
    font-size: 3.5rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 40px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #000000;
    margin-top: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text .magic-quote {
    font-style: italic;
    font-weight: 500;
    color: #000000;
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid #000000;
    font-size: 1.1rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 12/8;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing .magic-quote {
    font-style: italic;
    font-weight: 400;
    color: #666666;
    margin-top: 3rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-image:hover {
    transform: translateY(-5px);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #000000;
}

.stat h4 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.workshop-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.workshop-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workshop-item:hover img {
    filter: brightness(1.1) contrast(1.05);
}

.workshop-watermark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 4px;
    z-index: 2;
}

.workshop-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.workshop-item:hover .workshop-watermark {
    opacity: 0.9;
}

/* Responsive workshop grid */
@media (max-width: 1024px) {
    .workshop-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 220px);
    }
    
    .workshop-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .workshop-item:nth-child(2) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }
    
    .workshop-item:nth-child(3) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }
    
    .workshop-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .workshop-item:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
    }
    
    .workshop-item:nth-child(6) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
    
    .workshop-item:nth-child(7) {
        grid-column: 3 / 4;
        grid-row: 4 / 6;
    }
    
    .workshop-item:nth-child(8) {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }
    
    .workshop-item:nth-child(9) {
        grid-column: 2 / 3;
        grid-row: 5 / 6;
    }
    
        .workshop-item:nth-child(10) {
        grid-column: 1 / 4;
        grid-row: 4 / 5;
    }
    
    .workshop-item:nth-child(11) {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}

.workshop-item:nth-child(12) {
    grid-column: 1 / 4;
    grid-row: 7 / 9;
}

.workshop-item:nth-child(11) {
    grid-column: 1 / 4;
    grid-row: 5 / 7;
}

.workshop-item:nth-child(12) {
    grid-column: 1 / 4;
    grid-row: 7 / 9;
}
}

@media (max-width: 768px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(11, 200px);
        gap: 15px;
    }
    
    .workshop-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .workshop-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .workshop-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .workshop-item:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
    
    .workshop-item:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 5 / 6;
    }
    
    .workshop-item:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 5 / 6;
    }
    
    .workshop-item:nth-child(7) {
        grid-column: 1 / 2;
        grid-row: 6 / 7;
    }
    
    .workshop-item:nth-child(8) {
        grid-column: 2 / 3;
        grid-row: 6 / 7;
    }
    
    .workshop-item:nth-child(9) {
        grid-column: 1 / 2;
        grid-row: 6 / 7;
    }
    
    .workshop-item:nth-child(10) {
        grid-column: 2 / 3;
        grid-row: 6 / 7;
    }
    
    .workshop-item:nth-child(11) {
        grid-column: 1 / 3;
        grid-row: 7 / 9;
    }
    
    .workshop-item:nth-child(12) {
        grid-column: 1 / 3;
        grid-row: 9 / 11;
    }
}

/* YouTube Section */
.youtube {
    padding: 40px 0;
    background: #f8f9fa;
}

.youtube-content {
    text-align: center;
}

.youtube-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.youtube-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

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

.youtube-video {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.youtube-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

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

.video-link:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
}

.video-link:hover .play-button {
    background: #ff0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-video p {
    padding: 1rem;
    margin: 0;
    font-weight: 600;
    color: #333;
}

.youtube-subscribe {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.youtube-subscribe:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.subscribe-content {
    max-width: 250px;
}

.subscribe-content i {
    color: #ff0000;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.subscribe-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.subscribe-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.youtube-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.youtube-link:hover {
    color: #cc0000;
    border-bottom-color: #cc0000;
}

.youtube-placeholder {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-placeholder:hover {
    border-color: #ff0000;
    background: #f8f9fa;
}

.youtube-placeholder .placeholder-text i {
    color: #ff0000;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.youtube-cta {
    margin-top: 2rem;
}

.youtube-cta .btn {
    background: #ff0000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.youtube-cta .btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.youtube-cta .btn i {
    margin-right: 10px;
}

/* Workshop Section */
.workshop {
    padding: 40px 0;
    background: white;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 250px);
    gap: 15px;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Compact grid layout with minimal gaps */
.workshop-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.workshop-item:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.workshop-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.workshop-item:nth-child(4) {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

.workshop-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.workshop-item:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.workshop-item:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.workshop-item:nth-child(8) {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

.workshop-item:nth-child(9) {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
}

.workshop-item:nth-child(10) {
    grid-column: 3 / 5;
    grid-row: 4 / 5;
}



/* Gallery Section */
.gallery {
    padding: 40px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #f8f9fa;
    aspect-ratio: 4/3;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    filter: brightness(1.05) contrast(1.02);
    transform: scale(1.02);
}

.gallery-watermark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 4px;
}

.gallery-item:hover .gallery-watermark {
    opacity: 0.9;
}

.gallery-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive gallery grid */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
}





.gallery-item:hover img {
    transform: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #000000;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 40px 0;
    background: white;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pricing-text {
    text-align: left;
}

.pricing-text h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pricing-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-text .guarantee {
    font-weight: 600;
    color: #000000;
    margin-top: 1.5rem;
    font-style: italic;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-item:hover {
    transform: translateX(5px);
    border-color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-icon {
    font-size: 2.5rem;
    color: #000000;
    flex-shrink: 0;
}

.pricing-details {
    flex: 1;
}

.pricing-details h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.pricing-details p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.pricing-cta {
    margin-top: 3rem;
}

/* Mobile Responsive Pricing */
@media (max-width: 768px) {
    .pricing-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-text {
        text-align: center;
    }
    
    .pricing-text h3 {
        font-size: 1.5rem;
    }
    
    .pricing-text p {
        font-size: 1rem;
    }
    
    .pricing-breakdown {
        gap: 1rem;
    }
    
    .pricing-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-details h4 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .pricing-details p {
        font-size: 0.85rem;
    }
}

.pricing-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #000000;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: #000000;
    margin-right: 1rem;
    width: 30px;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333333;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #333333;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #333333;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333333;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-image-full {
        height: 50vh;
    }

    .hero-logo-center img {
        width: 300px;
    }

    .hero-content-below {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .stats {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .guitar-showcase {
        font-size: 6rem;
    }

    .guitars-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.guitars-grid,
.services-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}





.filter-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #333;
}

.filter-group select {
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: #000000;
}

/* Shop Products */
.shop-products {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #000000, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 5rem;
    color: white;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-specs span {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #333;
    border: 1px solid #e9ecef;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 120px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000000;
}

.inquiry-form h2 {
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
}

/* Product Detail Modal Styles */
.product-detail h2 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.product-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.product-detail-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-detail-full h3,
.product-detail-specs h3 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-detail-full p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-detail-specs ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-detail-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.product-detail-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.product-detail-specs li:last-child {
    border-bottom: none;
}

.product-detail-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Active Navigation Link */
.nav-link.active {
    color: #000000;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Shop Styles */
@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.gallery-hero-content h1 {
    color: #000000;
    margin-bottom: 1rem;
}

.gallery-hero-content p {
    font-size: 1.3rem;
    color: #666;
}

.gallery-filters {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.gallery-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    max-width: 80%;
}

.lightbox-caption h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-carousel {
        max-width: 100%;
    }
    
    .gallery-nav {
        padding: 0.8rem 1.2rem;
        font-size: 1.2rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-counter {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
    }
}

/* Modal Image Viewer */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.8;
    z-index: 10;
}

.modal-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Make gallery and workshop items clickable */
.gallery-item,
.workshop-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .modal-watermark {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}
