/* Base Styles */
:root {
    --primary-color: hsl(46, 84%, 52%);
    --secondary-color: #1a1a1a;
    --accent-color: #b8860b;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

/* Site logo image (in navigation) */
.site-logo {
    height: 44px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .site-logo {
        height: 36px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn {
    padding: 8px 20px;
    margin-left: 0;
}

/* Header-specific button style: angled/angled look without distorting text */
.nav-links .nav-btn {
    padding: 8px 18px;
    border-radius: 6px;
    transform: skewX(-12deg);
    display: inline-block;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.nav-links .nav-btn span{
    display: inline-block;
    transform: skewX(12deg);
}
.nav-links .nav-btn.btn-primary{
    background: var(--primary-color);
    color: var(--white);
}
.nav-links .nav-btn.btn-secondary{
    background: transparent;
    color: var(--secondary-color);
    border: none;
}
.nav-links .nav-btn:hover{
    transform: skewX(-12deg) translateY(-3px);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideshow 20s ease-in-out infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 4s;
}

.hero-slide:nth-child(3) {
    animation-delay: 8s;
}

.hero-slide:nth-child(4) {
    animation-delay: 12s;
}

.hero-slide:nth-child(5) {
    animation-delay: 16s;
}

@keyframes slideshow {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.facility:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility i {
    font-size: 2rem;
    color: var(--primary-color);
}

.facility h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Events Section */
.events {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.6) 100%), url('../images/IMG_1512.jpeg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.events .section-header h2,
.events .section-header p {
    color: var(--white);
}

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

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    padding: 40px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Ensure event link cards are clickable and not accidentally covered by overlays */
.events-grid {
    position: relative;
}
.events-grid .event-card {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.event-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.info-item p, .info-item a {
    color: #666;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #aaa;
    padding: 80px 0 20px;
}

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

.footer-about h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: #aaa;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Footer map styles */
.footer-map h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links .btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Facilities Section Styles */
.facilities-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.6) 100%), url('../images/IMG_1289.jpeg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.facilities-section .section-header h2,
.facilities-section .section-header p {
    color: var(--white);
}

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

.facility-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(49, 48, 46, 0.1) 0%, rgba(38, 37, 34, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.facility-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.facility-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.facility-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.btn-large {
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
}

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

    .facility-card {
        padding: 25px 20px;
    }

    .facility-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .facility-card h3 {
        font-size: 1.1rem;
    }

    .facility-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .facility-card {
        padding: 20px 15px;
    }

    .facility-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}


.booking-section {
    background: linear-gradient(135deg, rgba(48, 48, 45, 0.8) 0%, rgba(43, 42, 40, 0.7) 100%), url('../images/IMG_20221129_003102.jpeg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-section .section-header h2,
.booking-section .section-header p {
    color: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.booking-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background-color: #fffbf0;
}

.booking-form select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.btn-large {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
}

.booking-highlights {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-highlights h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 8px;
    background: var(--light-gray);
    transition: var(--transition);
}

.highlight-item:hover {
    background: #f0e8d8;
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
}

.highlight-item h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0 0 5px 0;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.quick-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.quick-contact h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.quick-contact .contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 10px;
    color: var(--white);
}

.quick-contact .contact-btn:last-child {
    margin-bottom: 0;
}

.contact-btn.whatsapp {
    background: #25d366;
}

.contact-btn.whatsapp:hover {
    background: #1fa855;
    transform: translateY(-2px);
}

.contact-btn:not(.whatsapp) {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-btn:not(.whatsapp):hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .booking-form-wrapper {
        padding: 20px;
    }

    .booking-highlights {
        padding: 20px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 12px;
    }

    .quick-contact .contact-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}


.contact-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(26, 26, 26, 0.65) 100%), url('../images/IMG-20210110-WA0094.jpeg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-detail {
    color: #666;
    font-size: 0.95rem;
    margin: 8px 0;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin: 5px 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.social-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.social-section h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--white);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.facebook:hover {
    background: #155cdb;
    transform: scale(1.1);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.whatsapp:hover {
    background: #1fa855;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .facilities-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 2rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Event Highlights - Quick Highlights section */ 
.highlights-section {
    padding: 60px 0;
    background: #fbfbfb;
}
.section-title {
    text-align: center;
    margin-bottom: 18px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 12px;
}
.event-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
    text-align: left;
    transition: transform .15s ease, box-shadow .15s ease;
}
.event-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.event-logo {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}
.event-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--secondary-color);
}
.event-details {
    font-size: 13px;
    color: #666;
}

/* Gallery grid for event pages */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin:20px 0}
.gallery-grid img{width:100%;height:180px;object-fit:cover;border-radius:8px}

@media(max-width:600px){
  .event-btn{padding:14px}
  .section-title{font-size:22px}
  .gallery-grid img{height:140px}
}
