
:root {
  --bg:          #0f0f0f;
  --bg2:         #161616;
  --bg3:         #1e1e1e;
  --surface:     #232323;
  --border:      #2e2e2e;
  --gold:        #e8a020;
  --gold-light:  #f5c355;
  --gold-dark:   #b87a10;
  --red:         #c0392b;
  --text:        #e8e8e8;
  --text-muted:  #909090;
  --text-dark:   #555;
  --white:       #ffffff;
  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.55);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.7);
  --topbar-h:    36px;
  --header-h:    72px;
  --nav-h:       46px;
  --transition:  0.22s ease;
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }




html { scroll-behavior: smooth; }

body {
  background:#ffffff;
  color: #e8e8e8;
  font-family: 'Rajdhani', 'Noto Sans Telugu', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
}



a { color: inherit; text-decoration: none; }
/* img { display: block; width: 100%; height: 100%; object-fit: cover; } */




/* ===================== TOPBAR ===================== */
.topbar {
    background: #011016ba;
    /* background: #ffa500; */
    border-bottom: 1px solid #2e2e2e24;
    height: var(--topbar-h);
    overflow: hidden;
    /* position: sticky; */
        z-index: 200;
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
}

.topbar-links {
  display: flex;
  gap: 0;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.topbar-links::-webkit-scrollbar { display: none; }

.topbar-links a {
  color: #ffffff;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 0 10px;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    border-right: 1px solid #8181814d;
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
    text-shadow: 0px 2px 3px #00000099;
}

.topbar-links a:hover { color: rgb(236, 206, 32); background: rgba(232,160,32,0.06); }


/* .topbar-links a:first-child { color: var(--gold); } */

/* ===================== HEADER ===================== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e3e3e3;
    height: fit-content;
    /* position: sticky; */
    top: 36px;
    z-index: 190;
}

.header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap { flex-shrink: 0; }

.logo-div {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    line-height: 1;
    gap: 0 4px;
    padding: 10px;
    height: 110px;
    width: 200px;
}

.logo-div img {

   display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 1px solid black; */
    border-radius:5px;
}




.header-ad-slot {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width:728px;
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  padding: 7px 12px;
  width: 200px;
}
.header-search input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--gold);
  border: none;
  color: #000;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 15px;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--gold-light); }

/* ===================== PRIMARY NAV ===================== */

.primary-nav {
    background: #ffa500;
    height: fit-content;
    box-shadow: 0 2px 12px rgba(232, 160, 32, 0.25);
    /* position: sticky; */
     /* top: calc(var(--topbar-h) + var(--header-h)); */
      /* z-index: 180; */
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  height: 100%;
}

.nav-list li a {
  color: #363636;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0 18px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
  border-right: 1px solid rgba(0,0,0,0.12);
}
.nav-list li a:hover,
.nav-list li a.active {
  background: rgba(0,0,0,0.18);
  color: var(--white);
}

/* ===================== AD PLACEHOLDER ===================== */
.ad-placeholder {
  background: #e0e0e0;
  font-size: 11px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  border-radius: 6px;
  padding: 10px;
  flex-direction: column;
}
.ad-placeholder.wide { min-height: 90px; width: 100%; }


.sidebar-ad { min-height: 250px;position: relative; }

.sidebar-ad a img {
  width: 200px;
  height: 102px;
}
.tone-app-banner {
    height: 70px;
    width: 220px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #00000040;
}

.sidebar-ad span {
    position: absolute;
    top: 20px;
    left: 0;
    transform: rotate(0deg);
    right: 0;
    color: #000000;
    padding: 16px 5px 5px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-ad p {
    background: #008cff;
    padding: 5px 20px;
    font-weight: bold;
    text-shadow: 0px 2px 3px #000000b0;
    margin-bottom: 0;
    cursor: pointer;
    border-radius: 6px;
}


.sidebar-ad button {
    width: 80px;
    height: 29px;
    margin: 3px 5px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    background: #0d6efd;
    color: white;
    cursor: pointer;
}

.sidebar-ad button.ios {
   background: #e40c34;
}





/* ===================== MAIN ===================== */
.site-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px 40px;
}





.alpha-filter {
    background: #936003;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border-radius: 10px;
}

/* breadcrumb inside green bar */
.breadcrumb {
  /* margin-bottom: 8px; */
  font-size: 15px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}



/* alphabet links */
.alphabet-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 3px;
}

.alphabet-links a:hover {
  text-decoration: underline;
}


/*==================  PHOTOS FOOTER CSS ============================== */
.photos-footer-links {
    background: rgb(3 11 19 / 72%);
    width: 100%;
    margin: auto;
    padding: 20px;
}
.photos-footer-links-container {
     height: 220px;
    padding: 5px;
    display: flex;
}

.photos-footer-links-container div {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    height: 100%;
    background: rgb(3 11 19 / 33%);
    padding: 15px;
}

.photos-footer-links-container div p,.photos-footer-links-container div a {
    color: #ffffff;
    font-size:15px;
    font-weight: 500; 
}
.photos-footer-links-container div a:hover  {
   text-decoration: none;
}



.photos-footer-middle-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 50%;
   
}

.photos-footer-middle-container p, .photos-footer-middle-container p a ,.photos-footer-middle-container a ,.photos-footer-middle-container h2 {
    color: #ffffff;
    font-size:15px;
    font-weight: 500; 
}
.photos-footer-middle-container p ,  .photos-footer-middle-container h2 {
   text-align: end;
}

.photos-footer-middle-container a img {
    height:50px;
    width:125px;
}

.photos-footer-desclaimer {
    color: #ffffff;
    font-size:15px;
    font-weight: 500; 
    padding: 10px;
}



/* Tablet */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  

  /* Header */
  .header-inner        { gap: 14px; }
  .header-ad-slot      { display: none; }          
  .header-search input { width: 160px; }

}

/* Mobile */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

   /* CSS variable overrides for tighter layout */
  :root {
    --header-h: 60px;
    --nav-h:    44px;
  }

  /* Topbar — show only key links, let it scroll */
  .topbar-links a      { font-size: 10.5px; padding: 0 8px; }

  /* Header */
  .logo-t1, .logo-one  { font-size: 22px; }
  .logo-photos         { font-size: 11px; letter-spacing: 5px; }
  .header-search       { display: none; }          /* replaced by icon button if needed */

  /* Nav — hamburger */
  .nav-toggle          { display: flex; }
  .primary-nav         { position: relative; z-index: 400; }
  .nav-list {
    display:        none;
    position:       absolute;
    top:            var(--nav-h);
    left:           0;
    right:          0;
    background:     #1a0900;
    flex-direction: column;
    height:         auto;
    padding:        6px 0;
    border-bottom:  2px solid var(--gold);
    z-index:        400;
    box-shadow:     0 8px 24px rgba(0,0,0,0.6);
  }
  .nav-list.open       { display: flex; }
  .nav-list li         { width: 100%; }
  .nav-list li a {
    color:        var(--gold);
    border-right: none;
    border-bottom:1px solid #2a1100;
    padding:      13px 20px;
    width:        100%;
    font-size:    15px;
  }
  .nav-list li a:hover,
  .nav-list li a.active {
    background: rgba(232,160,32,0.12);
    color: var(--gold-light);
  }

  .footer-links a      { font-size: 11px; padding: 4px 8px; }


}

/* Small mobile */
@media (max-width: 480px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-links        { gap: 0; }
  .footer-links a      { font-size: 10.5px; padding: 3px 7px; }
}













* { box-sizing: border-box; margin: 0; padding: 0; }

.grid-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
}


  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(200,169,110,0.4), transparent);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size:30px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #744e4e;
    margin-bottom: 2rem;
    line-height: 1.1;
  }
  .section-title em { color: var(--gold); font-style: italic; }

.vpb-datas {
  /* columns: 4;
  column-gap: 12px; */
  display:flex;
  flex-wrap:wrap;
  gap: 15px;
}

.card {
   display: block;
    text-decoration: none;
    color: inherit;
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    width: 24%;
    margin: 5px 0;
}

.card:hover { transform: translateY(-2px); }

.card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 400px;
}


.card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgb(0 0 0 / 75%));
  opacity: 1;
  transition: opacity 0.2s;
}

.card-overlay span {
    text-shadow: 0px 3px 5px #000000;
    font-size: 15px;
    font-weight: 600;
}

.card:hover .card-overlay { opacity: 1;top:0;text-align: center; display: flex;justify-content: center;
  align-items: center;font-weight:500;letter-spacing: 1px;
 text-shadow: 0px 3px 5px black;font-size: 16px !important;
}


.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}




.related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    width: 24%;
    margin: 5px 0;
}

.related-card:hover { transform: translateY(-2px); }

.related-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 300px;
}



.related-card:hover .card-overlay { opacity: 1;top:0;text-align: center; display: flex;justify-content: center;
  align-items: center;font-weight:500;letter-spacing: 1px;
 text-shadow: 0px 3px 5px black;font-size: 16px !important;
}


/* @media (max-width: 1100px) { .masonry-grid { columns: 3; } }
@media (max-width: 720px)  { .masonry-grid { columns: 2; } }
@media (max-width: 440px)  { .masonry-grid { columns: 1; } } */
@media (max-width: 1280px) { 
   .card img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 300px;
}

.vpb-datas {
	
	 gap:8px;
}
.related-grid {
  gap: 8px;
}


}

.gallery .vpb-datas {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
   gap: 10px;
   display: flex; 
flex-wrap: wrap;
}

.gallery .vpb-datas a {
    display: block;
    margin-bottom: 20px;
    break-inside: avoid;
    width: 24%;
}

.gallery .vpb-datas img {
    width: 80%;
    height: 200px;
    display: block;
    border-radius: 5px;
	object-fit: cover;
}





.gallery .vpb-datas a:hover img {
  transform: scale(1.03);
  transition: 0.3s;
}


@media (max-width: 1024px) {

}

@media (max-width: 600px) {
 
}