
        :root {
         
            --transition: all 0.3s ease;
        }
        
     
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 5px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--gold);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gold);
            margin: 0 auto;
        }
         */
        /* Album Navigation */
        .album-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .album-btn {
            padding: 12px 25px;
            background: white;
            color: var(--gold);
            border: 2px solid var(--gold);
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .album-btn:hover, .album-btn.active {
            background: var(--gold);
            color: white;
        }
        
      /* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

.album-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex; /* Changed to flex for horizontal layout */
    height: 200px; /* Fixed height for consistency */
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.album-cover {
    width: 200px; /* Fixed width for image */
    height: 100%; /* Take full height of card */
    overflow: hidden;
    position: relative;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.view-album {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.view-album i {
    margin-left: 8px;
}

.album-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

/* Changed order - p above h3 */
.album-info p {
    color: var(--charcoal);
    font-size: 14px;
    margin-bottom: 10px;
    order: 1; /* p comes first */
}

.album-info h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
    order: 2; /* h3 comes after */
}

.photo-count {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    order: 3; /* photo count comes last */
    margin-top: auto; /* push to bottom */
}

.photo-count i {
    margin-right: 8px;
}
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--light-egg);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            
            .album-cover {
    height: 290px;
    overflow: hidden;
    position: relative;
}
            
            .section-title h2 {
                font-size: 20px;
            }
            .section-title p {
                font-size: 12px;
            }
            
            .album-nav {
                gap: 10px;
            }
            
            .album-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .albums-grid {
                grid-template-columns: 1fr;
            }
        }

  /* Hero Section Styles */
  .hero {
    
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-bottom: 60px;
  }
  
  .container {
    width: 85%;
    height: 75%;
    position: relative;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Video Controls Styles */
  .video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  
  .video-wrapper:hover .video-controls {
    opacity: 1;
  }
  
  .progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .seek-slider {
    flex-grow: 1;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
  }
  
  .seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
  }
  
  .time-display {
    color: white;
    font-size: 14px;
    min-width: 100px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
  
  .control-buttons {
    display: flex;
    gap: 15px;
  }
  
  .control-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .control-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }
  
  .volume-control {
    margin-left: auto;
  }
  
  /* Volume Control Styles */
  .volume-control {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .container {
      width: 90%;
      height: 70%;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      width: 95%;
      height: 65%;
    }
    
    .time-display {
      font-size: 12px;
      min-width: 80px;
      display: flex;
      justify-content: flex-end;
    }
    
    .control-btn img {
      width: 18px;
      height: 18px;
    }
  }
  
  @media (max-width: 576px) {
    
    
    .container {
      width: 100%;
      height: 60%;
    }
    
    .video-controls {
      padding: 8px 10px;
    }
    
    .time-display {
      font-size: 11px;
      min-width: 70px;
      display: flex;
justify-content: flex-end;
    }
  }
