* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@font-face {
    font-family: playfair;
    src: url(Playfair-VariableFont_opsz\,wdth\,wght.ttf);
}

@font-face {
    font-family: title;
    src: url(TitilliumWeb-Black.ttf);
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #1d3655;
  }


  
header {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
}

.logo {
    font-size: 28px;
    color: #102a43;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #102a43;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #e5ebf4;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #102a43;
    cursor: pointer;
    gap: 10px;
    text-decoration: none;
}

.order-btn i{
    font-size: 20px;
    text-decoration: none;
}

a{
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #102a43;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcfcfc;
    z-index: 1000;
}

.mobile-menu a {
    margin: 20px 0;
    text-decoration: none;
    color: #102a43;
    font-size: 16px;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 3rem;
    color: #102a43;
    cursor: pointer;
}

@media (max-width: 768px) {

    header {
        width: 100vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: #fff;
        position: relative;
        z-index: 10;
    }

    .nav-links,
    .order-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .logo {
        width: 100%;
        height: 100%;
    }

    .logo img {
        height: 30px;
    }
}

.button-wrapper {
    position: relative;
    display: inline-block;
}

.fancy-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.button-wrapper::before,
.button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

  
  .hero {
    width: 100%;
    position: relative;
    min-height: 89vh;
    background-image: url(Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    font-size: 3.5vw;
    font-family: playfair;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  
  .hero-content p {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    /* font-weight: 300; */
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 1.5px;
  }
  
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: #23364d;
    color: white;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
  }
  

  
  .gallery-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      
    }
  
  /* .gallery-section, */
  .video-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-title {
    text-align: center;
    font-size: 40px;
    font-family: playfair;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1d3655;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* opacity: 0; */
    transform: translateY(40px);
  }
  
  .gallery-item img {
    width: 100%;
    display: block;
  }
  
  .caption {
    padding: 10px 15px;
    font-weight: 600;
    color: #23364d;
    text-align: center;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
  }
  
  .video-item {
    width: 100%;
    height: auto;
    max-width: 400px;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* opacity: 0; */
    transform: translateY(40px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .header {
      flex-direction: column;
      padding: 15px 20px;
    }
  
    .nav {
      margin-top: 10px;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content p {
      font-size: 1.1rem;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .video-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }
  
    .video-item {
      max-width: 350px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .video-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .video-item {
      max-width: 100%;
    }
  }
  
  @media (max-width: 414px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .gallery-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #1d3655;
    line-height: 1.5;
    letter-spacing: 1.5px;
  }

  /* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(0px);
  }

  100% {
      opacity: 1;
      transform: translateY(0px);
  }
}

/* Animation keyframes */
@keyframes fadeSlideUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

  .hero-content {
    opacity: 0;
    animation: fadeSlideUp 1.2s ease-out 0.2s forwards;
}

/* Optional: Animate the heading and paragraph separately for a staggered effect */
.hero-content h1 {
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.4s forwards;
}

.hero-content p {
    opacity: 0;
    animation: fadeSlideUp 1s ease-out 0.7s forwards;
}


/* Footer Styles */
.footer {
  width: 100vw;
  height: auto;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 2;
  min-width: 200px;
  margin-bottom: 24px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.footer-desc {
  max-width: 500px;
  color: #003459;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 16px;
  color: #003459;
  font-size: 20px;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #0077b5;
}

.footer-right {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.footer-right h3 {
  font-size: 22px;
  color: #003459;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-contacts {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  color: #003459;
  font-size: 15px;
}

.footer-contacts li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-size: 15px;
}

.footer-contacts i {
  margin-right: 10px;
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  margin-top: 24px;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #888;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #003459;
  text-decoration: none;
  margin: 0 4px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .footer-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 16px;
  }

  .footer-left,
  .footer-right {
      min-width: 0;
      width: 100%;
  }

  .footer-right {
      margin-top: 24px;
  }

  .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      padding: 16px;
      gap: 8px;
  }
}

@media (max-width: 600px) {
  .footer {
      padding: 30px 10px;
  }

  .footer-logo {
      width: 120px;
  }

  .footer-desc {
      font-size: 14px;
  }

  .footer-right h3 {
      font-size: 18px;
  }

  .footer-contacts {
      font-size: 13px;
  }

  .footer-bottom {
      font-size: 12px;
      padding: 12px;
  }

  * {
      overflow-x: hidden;
  }
}