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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: logoZoom 1.5s ease-in-out infinite;
    margin-bottom: 25px;
}

@keyframes logoZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.loader-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Wide Containers for Desktop */
.header-container,
.nav-container,
.main-container,
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 25px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid white;
    background: white;
    padding: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.school-info h1 {
    font-size: 32px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
}

.school-info .tagline {
    font-size: 16px;
    font-style: normal;
    opacity: 0.95;
}

.contact-info {
    text-align: right;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
    font-weight: 500;
}

/* Modern Navigation */
nav {
    background-color: #2C3E50;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #FF6B35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 80%;
}

.menu li a:hover,
.menu li a.active {
    background-color: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Modern Slider */
.slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 600px;
    max-width: 1920px;
    margin: 0 auto;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.slide-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-caption h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease;
}

.slide-caption p {
    font-size: 24px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 36px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
    color: #2C3E50;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: translateY(-50%) scale(1.1);
}

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

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

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Main Content */
main {
    padding: 60px 30px;
}

.welcome {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    text-align: center;
}

.welcome-content h2 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
}

.decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF6B35, #F7931E);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.welcome-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
}

/* Highlights Section */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-top-color: #FF6B35;
}

.highlight-card .icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.highlight-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-card h3 {
    color: #2C3E50;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.highlight-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Quick Info Section */
.quick-info {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.quick-info h2 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 5px solid #FF6B35;
}

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

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-item strong {
    color: #2C3E50;
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.info-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Messages, Rules, About Content */
.message-box,
.rules-section,
.about-content {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.message-box h3,
.rules-section h2,
.about-content h2 {
    color: #2C3E50;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
}

.about-content h3 {
    color: #FF6B35;
    margin: 30px 0 20px;
    font-size: 26px;
    font-weight: 600;
}

.message-box p,
.rules-section p,
.about-content p {
    line-height: 1.9;
    color: #555;
    font-size: 17px;
    margin-bottom: 20px;
}

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

.rules-section li,
.about-content li {
    margin: 15px 0;
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form,
.contact-details {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form h3,
.contact-details h3 {
    color: #2C3E50;
    margin-bottom: 25px;
    font-size: 28px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2C3E50;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

/* Staff Table */
.staff-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 40px 0;
}

.staff-table h3 {
    color: #2C3E50;
    padding: 30px;
    font-size: 28px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #2C3E50;
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

td {
    padding: 18px;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
}

tr:hover {
    background: #f8f9fa;
}

tr:last-child td {
    border-bottom: none;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #2C3E50;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 15px;
}

/* Home About Section */
.home-about {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-text h3 {
    color: #2C3E50;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Home Messages Section */
.home-messages {
    margin-bottom: 60px;
}

.messages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.message-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #FF6B35;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.message-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.message-card h3 {
    color: #2C3E50;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.message-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.message-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.message-author strong {
    color: #2C3E50;
    font-size: 18px;
}

.message-author span {
    color: #FF6B35;
    font-size: 14px;
    font-weight: 600;
}

.read-more {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    gap: 5px;
    color: #e55a25;
}

/* Home Gallery Preview */
.home-gallery {
    margin-bottom: 60px;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item-preview:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
}

.cta-btn-secondary {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #FF6B35;
}

.cta-btn-secondary:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    padding: 80px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    margin-bottom: 60px;
}

.cta-content h2 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: white;
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-btn-outline:hover {
    background: white;
    color: #FF6B35;
    transform: translateY(-3px);
}

.cta-section .cta-btn {
    background: white;
    color: #FF6B35;
}

.cta-section .cta-btn:hover {
    background: #2C3E50;
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2C3E50, #1a252f);
    color: white;
    padding: 60px 0 30px;
    margin-top: 0;
}

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

.footer-section h4 {
    color: #FF6B35;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.footer-section p {
    margin: 10px 0;
    font-size: 15px;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin: 12px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #FF6B35;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #2C3E50;
        flex-direction: column;
        padding: 80px 0 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .menu.active {
        right: 0;
    }
    
    .menu li {
        width: 100%;
    }
    
    .menu li a {
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .menu li a::after {
        display: none;
    }
    
    .header-content {
        text-align: center;
        justify-content: center;
    }
    
    .school-info h1 {
        font-size: 24px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-caption h2 {
        font-size: 32px;
    }
    
    .slide-caption p {
        font-size: 18px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .highlights,
    .info-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome,
    .quick-info,
    .message-box,
    .rules-section,
    .about-content,
    .contact-form,
    .contact-details {
        padding: 30px 20px;
    }
    
    .staff-table {
        overflow-x: auto;
    }
    
    table {
        min-width: 600px;
    }
    
    /* Mobile responsive for new sections */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .messages-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-preview {
        height: 250px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 50px 25px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn,
    .cta-btn-secondary,
    .cta-btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .header-container,
    .nav-container,
    .main-container,
    .footer-container {
        max-width: 1600px;
    }
}