
*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}
 
@font-face {
    font-family: 'Cygrotesk Wide Medium';
    src: url('../fonts/cygrotesk-widemedium.otf') format('opentype');
    font-weight: normal; /* Medium weight ke liye */
    font-style: normal;
}
@font-face {
    font-family: 'Cygrotesk Wide Regular';
    src: url('../fonts/cygrotesk-wideregular.otf') format('opentype');
    font-weight: normal; /* Medium weight ke liye */
    font-style: normal;
}

 
body {
    font-family: 'Cygrotesk Wide Regular', sans-serif;
 
     
   
    overflow-x:hidden;
}
/* ===========================
   Top Bar
=========================== */
.topbar {
    background: #b28f29;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

/* ===========================
   Header
=========================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: rgba(48, 26, 34, 0.95);
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    color: #fff;
}

/* Header children */
header .logo img {
    width: 80px;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: transparent solid 1px;
}
header nav a:hover{
color:#b28f29;
border-color: #b28f29;
}
header .header-right {
    display: flex;
    gap: 20px;
    font-size: 14px;
    align-items: center;
}

/* Burger Icon */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
transition: all 0.3s ease;
}
.burger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}
/* Cross Animation */
.burger.active span:nth-child(1) {
    transform: rotate(48deg) translate(5px, 6px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-44deg) translate(5px, -7px);
}
/* Mobile nav */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(48, 26, 34, 1);
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}
.mobile-nav a {
    padding: 10px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
}
/* ===========================
   Hero Section
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 0;
    background: linear-gradient(180deg, #3e2630, #6a555b);
    color: #fff;
}

/* Hero children */
.hero .small-title {
    color: #c6a23a;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cygrotesk Wide Medium', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
}

.hero p {
    margin-top: 25px;
    max-width: 500px;
    opacity: 0;
    line-height: 1.5;
}

/* ===========================
   Search Box (inside Hero)
=========================== */
.hero .search-box {
    margin-top: 40px;
    border-radius: 0.75rem;
    padding: 10px;
    opacity: 0;
    backdrop-filter: blur(24px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .search-box .search-box-inner {
    background-color: #ffffff1a;
    border-radius: 0.75rem;
    padding: 15px 10px;
    display: flex;
    width: 600px;
    max-width: 100%;
    align-items: center;
}

.hero .search-box input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    padding: 12px;
    outline: none;
} 
.hero .search-box input::placeholder {
    color: #fff;   
    opacity: 1;    
}
.hero .search-box button {
    background: #b28f29;
    border: none;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
}

/* ===========================
   Animation
=========================== */
.loaded h1 {
    animation: fadeUp 0.8s forwards;
}

.loaded p {
    animation: fadeUp 0.8s 0.2s forwards;
}

.loaded .search-box {
    animation: fadeUp 0.8s 0.4s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {

    header {
        padding: 20px;
       
        gap: 15px;
    }

    header nav {
        display: none;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }
 
.hero .search-box {
  margin-top: 20px;
  border-radius: 0.5rem;
  padding: 8px;
  width: 98%;
}
.topbar { 
  font-size: 11px;
}
header .header-right span.login-link{
    display: none;
}
.hero .search-box .search-box-inner svg{
    width: 14px ;
}
.hero .search-box input {
  flex: 1;
  background: none;
  border: none;
  color: white;
  padding: 8px;
  outline: none;
  font-size: 16px;
  width: 50%;
}
.search-box button {
  background: #b8952a;
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

.footer-mobile-nav{
    display: none !important;
}
 .burger {
        display: flex;
    }

}