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

body {
    font-family: 'Lato', sans-serif;
    background-color: #000;
    color: #e2e2e2;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #570707 0%, #2d0505 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    height: 100%;
}

.header-cartoon {
    max-width: 600px;
    width: auto;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.header-logo-text {
    max-width: 500px !important;
    width: 100% !important;
    height: auto !important;
    display: block;
    margin-bottom: 30px;
    margin-left: auto;
}

.header-text {
    text-align: right;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tagline {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: right;
}

.tagline p {
    margin-top: 10px;
}

.header-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.header-btn {
    background: linear-gradient(135deg, #c2be04, #a09d04);
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 190, 4, 0.4);
    color: #000;
}

/* Banner */
.banner {
    background-color: #161616;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    font-size: 1.3rem;
}

/* Main Navigation */
.main-nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 2px solid #c2be04;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #c2be04;
    background-color: rgba(194, 190, 4, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #c2be04;
    background-color: rgba(194, 190, 4, 0.2);
}

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

/* Section Styles */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

.section h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #c2be04;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #c2be04;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
    font-size: 1.3rem;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.countdown-item {
    padding: 15px 25px;
    border-radius: 8px;
    width: 350px !important;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    font-size: 1.4rem;
}

.countdown-halloween {
    background: linear-gradient(135deg, #ff6b00, #7c3acc);
    color: white;
}

.countdown-christmas {
    background: linear-gradient(135deg, #c41e3a, #228b22);
    color: white;
}

.countdown-days {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 5px;
}

.halloween-days { 
    color: #ffff00; 
}

.christmas-days { 
    color: #ffd700; 
}

}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.event-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c2be04;
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(194, 190, 4, 0.2);
}

.event-date {
    color: #c2be04;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.event-time {
    color: #999;
    margin-bottom: 10px;
}

.event-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Information Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(194, 190, 4, 0.2);
}

.info-card h3 {
    color: #c2be04;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.info-card p {
    margin-top: 15px;
    font-size: 1.1rem;
}

.info-card ul {
    list-style-position: inside;
    color: #ccc;
}

.info-card li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-card a {
    color: #c2be04;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-item {
    background-color: #1a1a1a;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    color: #fff;
    font-weight: bold;
}

.faq-question:hover {
    background-color: #2a2a2a;
}

.faq-answer {
    padding: 20px;
    color: #ccc;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Contact Form Styles */
.contact-form {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #c2be04;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    background: linear-gradient(135deg, #c2be04, #a09d04);
    color: #000;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 190, 4, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #2d5016;
    color: #8bc34a;
    border: 1px solid #8bc34a;
}

.form-message.error {
    background-color: #5d1414;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Contact Form Message Styles */
.contact-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-size: 1rem;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in;
}

.contact-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-message.info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Disabled submit button state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Map Section Styles */
.map-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-note {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
}

/* Contact Section */
.contact-info {
    text-align: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h3 {
    color: #c2be04;
    margin-bottom: 20px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 10px;
    margin-top: 20px;
}

.contact-info a {
    color: #c2be04;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
    background-color: #1a1a1a;
}

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

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

.gallery-button-container {
    text-align: center;
    margin-top: 40px;
}

.gallery-btn {
    background: linear-gradient(135deg, #c2be04, #a09d04);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 190, 4, 0.4);
    color: #000;
}

/* Footer */
.footer {
    background-color: #161616;
    padding: 30px 0;
    text-align: center;
    color: #666;
    margin-top: 60px;
}

.footer p {
    margin-top: 20px;
}

.footer p:last-child {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Social Media Icons */
.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #c2be04;
    background-color: rgba(194, 190, 4, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #fff;
    background-color: #c2be04;
    transform: translateY(-2px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Etiquette Section Highlighting */
.etiquette-section {
    background: #000;
    padding: 80px 0;
}

/* Removed shine animation */

.etiquette-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.etiquette-highlight {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #555;
    position: relative;
    z-index: 1;
}

.etiquette-content h3 {
    color: #ffd700;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.etiquette-rules {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.etiquette-rule {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6, #f5f5f5);
    border-radius: 10px;
    border-left: 5px solid #ff4500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.etiquette-rule:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
}

.etiquette-rule.priority-rule {
    background: linear-gradient(135deg, #ffe6e6, #ffcccc);
    border-left-color: #cc0000;
    border-left-width: 8px;
}

.rule-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.rule-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    flex: 1;
}

.rule-text strong {
    color: #ffd700;
    font-weight: 600;
}

.etiquette-footer {
    text-align: center;
    background: #333;
    color: #e0e0e0;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    border: 1px solid #555;
}

/* Animation for elements */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .container {
        max-width: 1024px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 768px;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: auto;
        padding: 40px 0 30px;
    }
    
    .header-cartoon {
        max-width: 400px;
    }
    
    .header-logo-text {
        max-width: 320px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .tagline {
        text-align: center;
    }
    
    .header-buttons {
        justify-content: center;
    }

    .section {
        padding: 40px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }

    .countdown-container {
        flex-direction: column;
        align-items: center;
    }

    .schedule-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Etiquette Section Mobile */
    .etiquette-section h2 {
        font-size: 2rem;
    }
    
    .etiquette-highlight {
        padding: 25px;
    }
    
    .etiquette-content h3 {
        font-size: 1.5rem;
    }
    
    .rule-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .rule-text {
        font-size: 1rem;
    }
    
    .etiquette-rule {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0 30px;
    }
    
    .header-cartoon {
        max-width: 300px;
    }
    
    .header-logo-text {
        max-width: 260px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .countdown-item {
        width: 350px !important;
        padding: 12px 20px;
    }
    
    .countdown-days {
        font-size: 1.3rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Gallery Mobile Styles */
    .carousel {
        height: 300px;
    }
}

/* Smooth scroll offset for anchor links */
#etiquette {
    scroll-margin-top: 100px;
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

/* Gallery Header and Navigation */
.gallery-header, .blog-header {
    background: linear-gradient(135deg, #570707 0%, #2d0505 100%);
    padding: 40px 0;
    text-align: center;
}

.gallery-nav, .blog-nav {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.gallery-nav .container, .blog-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-nav a, .blog-nav a {
    color: #c2be04;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.gallery-nav a:hover, .blog-nav a:hover {
    color: #fff;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.carousel-slide {
    width: 20%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
    text-align: left;
}

.slide-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #c2be04;
}

.slide-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(194, 190, 4, 0.8);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #c2be04;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #c2be04;
    transform: scale(1.2);
}

/* Gallery Grid - Override existing styles for gallery page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery page specific overrides for gallery items */
.gallery-grid .gallery-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: auto;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(194, 190, 4, 0.2);
}

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

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

.gallery-item-info {
    padding: 20px;
}

.gallery-item-title {
    color: #c2be04;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.gallery-item-desc {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

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

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Content Tabs */
.content-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 20px;
    padding: 0 20px;
}

.tab-btn {
    background: linear-gradient(135deg, #c2be04, #a09d04);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 190, 4, 0.4);
}

.tab-btn.active {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Videos Section */
.videos-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.video-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(194, 190, 4, 0.2);
}

.video-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-item:hover .play-icon {
    transform: scale(1.2);
    opacity: 1;
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h3 {
    color: #c2be04;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-post {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #c2be04;
}

.blog-post h2 {
    color: #c2be04;
    font-family: 'Cabin', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: none;
}

.blog-post h2:after {
    display: none;
}

.blog-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.blog-content {
    color: #ccc;
    line-height: 1.7;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h3 {
    color: #c2be04;
    margin: 30px 0 15px 0;
}

.blog-content ul, .blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
}

.read-more {
    color: #c2be04;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-sidebar {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-title {
    color: #c2be04;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.4;
}

.recent-posts a:hover {
    color: #c2be04;
}

.post-date {
    color: #999;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

/* ========================================
   GALLERY AND BLOG RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-nav .container, .blog-nav .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-overlay {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .content-tabs {
        gap: 10px;
        margin: 30px 0 15px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 0;
    }
    
    .blog-post {
        padding: 25px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Upload Section Styles */
.upload-section {
    padding: 60px 0;
    background: #0a0a0a;
}

.upload-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.upload-content h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 2.5rem;
    color: #c2be04;
    margin-bottom: 20px;
}

.upload-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.upload-form {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: left;
}

.upload-area {
    border: 2px dashed #444;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    background: #0a0a0a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.upload-area:hover {
    border-color: #c2be04;
    background: #151515;
}

.upload-area.drag-over {
    border-color: #c2be04;
    background: #1a1a0a;
}

.upload-placeholder {
    text-align: center;
    color: #888;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.upload-placeholder p {
    margin: 10px 0;
    color: #ccc;
}

.upload-note {
    font-size: 0.9rem;
    color: #888;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-item {
    position: relative;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.preview-info {
    padding: 10px;
}

.preview-name {
    font-size: 0.8rem;
    color: #e2e2e2;
    font-weight: 500;
    margin-bottom: 4px;
    word-wrap: break-word;
}

.preview-size {
    font-size: 0.7rem;
    color: #888;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 20, 20, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgba(220, 20, 20, 1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #888;
}

.upload-btn {
    background: linear-gradient(135deg, #c2be04 0%, #a8a103 100%);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cabin', sans-serif;
    width: 100%;
}

.upload-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #d4d004 0%, #c2be04 100%);
    transform: translateY(-2px);
}

.upload-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.upload-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.upload-message.success {
    background: #2d5a2d;
    color: #90ee90;
    border: 1px solid #4caf50;
}

.upload-message.error {
    background: #5a2d2d;
    color: #ffcccb;
    border: 1px solid #f44336;
}

/* Mobile Upload Styles */
@media (max-width: 768px) {
    .upload-content h2 {
        font-size: 2rem;
    }

    .upload-form {
        padding: 25px;
    }

    .upload-area {
        padding: 25px;
    }

    .upload-icon {
        font-size: 2.5rem;
    }

    .upload-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
}