/* =====================================================
   Hola Nail & Beauty - Custom Styles
   Color Palette: Green tones from brand card
   ===================================================== */

:root {
    --primary-dark: #2d4a3e;
    --primary: #3d6356;
    --primary-light: #5a8577;
    --secondary: #8fb5a3;
    --accent: #c5d9cf;
    --light: #e8f0ec;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --gold: #c9a962;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Typography - Cormorant Garamond (Collier benzeri) */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.875rem;
}

.top-bar a, .top-bar span {
    color: var(--accent);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--white);
}

.social-link {
    font-size: 1.1rem;
}

/* Language Toggle Switch */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-label {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.lang-label.active {
    opacity: 1;
    font-weight: 600;
    color: var(--white);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-light);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.toggle-switch-sm {
    width: 36px;
    height: 20px;
}

.toggle-switch-sm .toggle-slider:before {
    height: 14px;
    width: 14px;
}

.toggle-switch-sm input:checked + .toggle-slider:before {
    transform: translateX(16px);
}

/* Navbar */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 3px;
}

.brand-sub {
    font-size: 0.65rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 74, 62, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btn {
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* Price Info Alert */
.price-info-alert {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    border: 1px solid var(--secondary);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-info-alert i {
    font-size: 1.5rem;
    color: var(--primary);
}

.price-info-alert p {
    margin: 0;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    background-color: var(--light);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Card with Image */
.service-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Services Carousel */
.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-carousel {
    overflow: hidden;
    flex: 1;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
}

.service-slide {
    min-width: calc(33.333% - 1rem);
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .service-slide {
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .service-slide {
        min-width: 100%;
    }
}

.service-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.service-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.service-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dot.active,
.service-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .service-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-carousel-wrapper {
        gap: 0.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    border: 1px solid var(--light);
}

.pricing-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-header:hover {
    background: var(--primary);
}

.pricing-header h5 {
    margin: 0;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

.pricing-toggle {
    color: var(--accent);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.pricing-header[aria-expanded="true"] .pricing-toggle {
    transform: rotate(180deg);
}

.pricing-body {
    padding: 1.5rem;
    background: var(--white);
}

.pricing-body p {
    margin: 0;
    color: var(--text-muted);
}

/* Expert Pricing Styles */
.pricing-expert {
    background: var(--accent) !important;
    color: var(--primary-dark) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.expert-pricing-list {
    background: var(--light);
    border-radius: 10px;
    padding: 1rem;
}

.expert-pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--accent);
}

.expert-pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expert-pricing-item:first-child {
    padding-top: 0;
}

.expert-name {
    color: var(--primary-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.expert-name i {
    color: var(--primary);
}

.expert-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 74, 62, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    background-color: var(--light);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.blog-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content h4 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h4 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-google i {
    font-size: 1rem;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: calc(33.333% - 1rem);
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .testimonial-slide {
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .testimonial-slide {
        min-width: 100%;
    }
}

.testimonial-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-carousel-wrapper {
        gap: 0.5rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title::after {
    background: var(--accent);
}

.contact-info {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.contact-text h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.contact-text p {
    color: var(--accent);
    margin: 0;
}

.contact-text a {
    color: var(--accent);
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--white);
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer-section {
    background-color: var(--primary-dark);
    color: var(--accent);
    padding: 60px 0 30px;
}

.footer-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-text {
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.copyright {
    color: var(--accent);
    font-size: 0.875rem;
    margin: 0;
}

.seo-text {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Blog List Page */
.blog-list-page {
    padding: 60px 0;
    background-color: var(--light);
    min-height: 60vh;
}

/* Blog Detail Content Styles */
.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-wrap; /* Sat?r sonlar?n? korur ve uzun kelimeleri sarar */
    word-wrap: break-word; /* Uzun kelimeleri k?rar */
    overflow-wrap: break-word; /* Modern taray?c?lar için */
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
    white-space: normal;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    white-space: normal;
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
    color: var(--primary-dark);
    white-space: normal;
}

.blog-detail-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    white-space: normal;
}

/* Gallery Page */
.gallery-page {
    padding: 60px 0;
    background-color: var(--light);
    min-height: 60vh;
}

.gallery-page .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .gallery-page .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-page .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: var(--primary);
    border-color: var(--light);
    padding: 0.75rem 1rem;
}

.page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .lang-toggle {
        display: none;
    }
}

/* Admin Styles */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--primary-dark);
    padding: 2rem 0;
    flex-shrink: 0;
}

.admin-sidebar-title {
    color: var(--white);
    text-align: center;
    padding: 0 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--primary);
    color: var(--white);
}

.admin-content {
    flex: 1;
    padding: 2rem;
    background: var(--light);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.admin-stat {
    text-align: center;
}

.admin-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.admin-stat-label {
    color: var(--text-muted);
}

.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.admin-table th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light);
}

.admin-table tr:hover {
    background: var(--light);
}

.admin-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border-color: var(--light);
    padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(61, 99, 86, 0.15);
}

.btn-success {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 10px;
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-danger {
    border-radius: 10px;
}

.btn-secondary {
    border-radius: 10px;
}

.alert-success {
    background-color: var(--light);
    border-color: var(--primary);
    color: var(--primary-dark);
    border-radius: 10px;
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.login-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.login-title {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.login-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Image preview */
.image-preview {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Admin Mobile Responsive */
@media (max-width: 992px) {
    .admin-layout {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        padding: 1rem 0;
        position: relative;
    }
    
    .admin-sidebar-title {
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .admin-nav {
        display: flex;
        flex-wrap: wrap;
        padding: 0 0.5rem;
        gap: 0.25rem;
    }
    
    .admin-nav li {
        flex: 1 1 auto;
    }
    
    .admin-nav a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .admin-nav a i {
        font-size: 1.25rem;
    }
    
    .admin-content {
        padding: 1rem;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .admin-header h2 {
        font-size: 1.5rem;
    }
    
    .admin-table {
        display: block;
        overflow-x: auto;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .admin-form {
        padding: 1rem;
    }
    
    .admin-card {
        padding: 1rem;
    }
    
    .admin-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .admin-nav a span {
        display: none;
    }
    
    .admin-nav a {
        padding: 0.75rem;
    }
    
    .admin-nav a i {
        font-size: 1.5rem;
    }
    
    .admin-header .btn {
        width: 100%;
    }
}