:root {
    --primary-color: #0A3D62;
    --accent-color: #E55039;
    --text-color: #333;
    --logo-size: 180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    background: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
}

@keyframes backgroundPan {
    0% { background-position: 80% center; }
    50% { background-position: 70% center; }
    100% { background-position: 80% center; }
}

header {
    background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.9)),
                url('https://i.ibb.co/bMkGTZv8/sardar-vallabh-bhai-patel-png-transparent-images-thumbnail-1667149932.png') center / cover no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

/* Adjust background image for mobile devices */
@media (max-width: 768px) {
    header {
        min-height: 300px;
        padding: 1.5rem;
        background-position: 80% center; /* Position image 80% from left (20% right) */
    }
}

.header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo {
    height: var(--logo-size);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
}

.event-banner {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stall-number {
    background: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    right: 1rem;
    top: 14rem;
    z-index: 2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .stall-number {
        right: 0.5rem;
        top: 1.5rem;
        font-size: 1.1rem;
        padding: 0.6rem 1.5rem;
    }
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: -1px;
    position: relative;
    z-index: 1;

    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.about-section {
    background: rgba(255,255,255,0.97);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-highlights {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.quote-card {
    background: white;
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    font-style: italic;
}

.quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.gallery-container {
    margin: 4rem 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.video-section {
    margin: 4rem auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --logo-size: 120px;
    }
    
    body {
        background-size: 70% auto;
        background-position: 90% center;
        animation: none;
    }

    header {
        min-height: 300px;
        padding: 1.5rem;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-section {
        margin-top: 0px;
        padding: 2rem 1rem;
    }

    .gallery img {
        height: 200px;
    }
}

.animated-heading {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.facebook-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin: 20px auto;
    max-width: 800px;
    font-family: Helvetica, Arial, sans-serif;
}

.fb-post-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #dddfe2;
}

.fb-profile-pic {
    width: 51px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
}

.fb-header-text h3 {
    font-size: 15px;
    margin: 0;
    color: #050505;
}

.fb-timestamp {
    font-size: 13px;
    color: #65676b;
}

.fb-post-content {
    padding: 12px 16px;
}

.fb-post-content p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.33;
    color: #050505;
}

.fb-video-wrapper {
    margin: 12px 0;
    border-radius: 8px;
    overflow: hidden;
}

.fb-engagement-bar {
    display: flex;
    border-top: 1px solid #dddfe2;
    padding: 8px 0;
    margin-top: 12px;
}

.fb-engagement-bar button {
    flex: 1;
    background: none;
    border: none;
    padding: 8px;
    color: #65676b;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.fb-engagement-bar button:hover {
    background: #f2f3f5;
}

.fb-engagement-bar button i {
    margin-right: 6px;
}

.fb-like:hover { color: #1877f2; }
.fb-comment:hover { color: #45bd62; }
.fb-share:hover { color: #1877f2; }

@media (max-width: 900px) {
    .facebook-post {
        margin: 15px;
    }
    
    .fb-video-wrapper iframe {
        height: 300px;
    }
}

/* VIP Gallery Styles */
.vip-gallery {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.vip-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vip-item:hover {
    transform: translateY(-5px);
}

.vip-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent-color);
}

.vip-caption {
    padding: 1rem;
    background: white;
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    line-height: 1.4;
}

/* Update regular gallery spacing */
.gallery-container {
    margin: 4rem 0 2rem;
}

.portfolio-item {
    height: 260px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .google-map {
    position: relative;
    width: 100%;
    padding-top: 95vh;
  }
  
  @media (max-width: 768px) {
    .google-map {
        padding-top: 177.77%;
    }
  }
  
  .google-map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .rounded {
    border-radius: 20px !important;
  }
  
.row {
    margin: 15px;
}

.btn-360-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.1rem;
}

.btn-360-toggle:hover {
    background: #d34532;
    transform: translate(-50%, -50%) scale(1.05);
}

.btn-360-toggle i {
    margin-right: 8px;
}

#360Container {
    width: 100%;
    height: 600px;
    display: none; /* Hidden by default */
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    #360Container {
        height: 400px;
    }
    
    .btn-360-toggle {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

.google-map {
    background: rgba(0,0,0,0.05);
    min-height: 400px;
    border: 2px dashed rgba(0,0,0,0.1);
}

.explore-360-section {
    padding: 4rem 0;
    background: rgba(10, 61, 98, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: var(--accent-color);
}

.section-title i {
    margin-right: 12px;
    font-size: 1.8rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

