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

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 

 
/* gallery-section*/

.gallery-hero {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    padding: 90px 60px 70px;
    background: linear-gradient(180deg, #2b3f73 0%, #0a132b 70%, #050b1f 100%);
}

.back {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.gallery-hero h1 {
    font-size: 72px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.gallery-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 760px;
    margin-bottom: 40px;
}

.filters {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.filters button {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

.filters .active {
    background: #ff2b2b;
    border-color: #ff2b2b;
    color: #fff;
}

@media (max-width: 576px) {
    .gallery-hero {
        padding: 70px 24px 60px;
    }

    .gallery-hero h1 {
        font-size: 44px;
    }

    .gallery-hero p {
        font-size: 16px;
    }

    .gallery-hero p br {
        display: none;
    }

    .filters {
        gap: 10px;
    }

    .filters button {
        font-size: 13px;
        padding: 9px 16px;
    }
}

/* galley-section */

.gallery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 40px;
    background: #050b1f;
    font-family: 'Playfair Display', serif;
}

.card {
    background: #0f1c3d;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
}

.img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #1e2f5d;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
}

.content {
    padding: 20px;
}

.content h3 {
    font-size: 22px;
    margin: 0 0 8px;
}

.content p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.location {
    font-size: 13px;
    opacity: 0.7;
}

.bottom a {
    background: #ff2b2b;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .gallery-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-cards {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

/* popup */


.xp-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.xp-wrapper{
    width:90%;
    max-width:1100px;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    background:#0b132b;
}

.xp-left{
    position:relative;
    padding:40px;
}

.xp-left img{
    width:100%;
    border-radius:14px;
}

.xp-count{
    position:absolute;
    top:20px;
    left:40px;
    background:#ff2b6b;
    color:#fff;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
}

.xp-right{
    padding:40px;
    color:#fff;
}

.xp-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.xp-type{
    background:#2a2f4a;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
}

.xp-close{
    width:34px;
    height:34px;
    border-radius:50%;
    border:none;
    background:#2a2f4a;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.xp-title{
    margin-top:16px;
    font-size:28px;
}

.xp-desc{
    opacity:.7;
    margin:10px 0;
}

.xp-place{
    display:block;
    margin-bottom:20px;
    opacity:.6;
}

.xp-gallery-title{
    font-size:14px;
    margin-bottom:12px;
    opacity:.8;
}

.xp-thumbs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.xp-thumbs img{
    width:100%;
    border-radius:10px;
    cursor:pointer;
}

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


.own-exp{
    background:#f56f6f;
    text-align:center;
    padding:90px 20px;
    font-family:'Playfair Display',serif;
    color:#fff;
}

.own-exp h2{
    font-size:56px;
    margin:0 0 18px;
    font-weight:600;
}

.own-exp p{
    font-size:18px;
    line-height:1.7;
    max-width:680px;
    margin:0 auto 32px;
}

.own-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.own-btn{
    padding:14px 28px;
    border-radius:8px;
    font-size:14px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.own-btn.primary{
    background:#ffffff;
    color:#e33a3a;
    box-shadow:0 10px 18px rgba(0,0,0,0.15);
}

.own-btn.outline{
    border:2px solid #ffffff;
    color:#ffffff;
}

@media(max-width:768px){
    .own-exp{
        padding:70px 20px;
    }

    .own-exp h2{
        font-size:34px;
    }

    .own-exp p{
        font-size:16px;
    }

    .own-exp p br{
        display:none;
    }

    .own-actions{
        flex-direction:column;
        align-items:center;
    }

    .own-btn{
        width:200px;
        text-align:center;
    }
}


.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}
