
: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;
  --gold-light: #e8d5a3;
  --dark: #0f0d0b;
  --surface2: #241e18;
  --muted: #8a7d6b;
  --accent: #d4856a;
}



*, *::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: 15px 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;
}



.hero-section {
    padding: 0.5rem 2.5rem 0rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .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; }



.photo-share-section {

    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 95%;
    padding: 5px;
    gap:20px;
}

.photo-share-section p {
    color: #744e4e;
    font-weight: 600;
}

.icon {
    font-size: 32px;
    transition: all 0.2s ease-in-out;
}

.icon.fb {
   
  color: #2b51a2;
}
.icon.x {
   color: black; 
}

.icon:hover {
    transform: scale(1.1);
}










  /* Slider */
 .slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--surface);
    /* max-height: 850px;
    max-width: 650px; */
}

  .slider-track {
  display: flex;
}


.slide {
  min-width: 100%;
  position: absolute;   
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}


.slide.active {
  position: relative;  
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,13,11,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 2.5rem;
  }

  .slide-info {
    transform: translateY(6px);
    transition: transform 0.4s ease;
  }
  .slide.active .slide-info { transform: translateY(0); }

  .slide-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.06em;
  }
  .slide-sub {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.3rem;
  }

  /* Slider controls */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15,13,11,0.6);
    border: 1px solid rgba(200,169,110,0.3);
    color: var(--gold);
    width: 46px; height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.25s;
    backdrop-filter: blur(4px);
  }
  .slider-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
  }
  .slider-btn.prev { left: 1.2rem; }
  .slider-btn.next { right: 1.2rem; }

  /* Dots */
  .slider-dots {
    position: absolute;
    bottom: 1.2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }
  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(200,169,110,0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  .dot.active {
    width: 22px;
    border-radius: 3px;
    background: var(--gold);
  }

  /* Thumbnails strip */
  .thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--surface);
  }
  .thumbnails::-webkit-scrollbar { height: 3px; }
  .thumbnails::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  .thumb {
    flex: 0 0 90px;
    height: 62px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color 0.25s, opacity 0.25s;
    opacity: 0.55;
  }
  .thumb.active { border-color: var(--gold); opacity: 1; }
  .thumb:hover { opacity: 0.85; }
  .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

  /* ── RELATED PHOTOS ── */
  .related-section {
    padding: 0rem 2.5rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }


  

.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;
}

.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;
}

.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;
}


}
  

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: 0.03em;
  }

  .card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.6rem;
  }
  .card-btn {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(200,169,110,0.5);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
  }
  .card-btn:hover { background: var(--gold); color: var(--dark); }
  .card-btn.dl { border-color: var(--accent); color: var(--accent); }
  .card-btn.dl:hover { background: var(--accent); color: var(--dark); }

  /* Featured wide card */
  .single-card.wide { grid-column: span 2; aspect-ratio: 16/10; }
  .single-card.wide img { object-position: center top; }

  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10,8,6,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    backdrop-filter: blur(8px);
  }
  .lightbox.open { opacity: 1; pointer-events: all; }

  .lightbox-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid rgba(200,169,110,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  }

  .lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none;
    border: 1px solid rgba(200,169,110,0.3);
    color: var(--gold);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .lightbox-close:hover { background: var(--gold); color: var(--dark); }

  .lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%; transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }


.dl-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(200,169,110,0.08);
  }
  .btn-primary {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem 2.2rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 1px;
  }
  .btn-primary:hover { background: var(--gold-light); }


.btn-secondary {
    font-family: Roboto;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.75rem 2.2rem;
    background: transparent;
    color: #b57400;
    border: 1px solid rgba(200, 169, 110, 0.5);
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 7px;
}

  .btn-secondary:hover { border-color: var(--gold); background: rgba(200,169,110,0.08); }



/*==================  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;
}




@media (max-width: 1024px) {
 

 
  .header-inner        { gap: 14px; }
  .header-ad-slot      { display: none; }          
  .header-search input { width: 160px; }

  .single-grid { grid-template-columns: repeat(3, 1fr); }
    .single-card.wide { grid-column: span 2; }

}

/* Mobile */
@media (max-width: 768px) {
 

     .hamburger { display: flex; }

    .hero-section, .related-section { padding: 1.5rem 1.2rem 2rem; }
    .breadcrumb { padding: 0.5rem 1.2rem; }

   
    .thumb { flex: 0 0 70px; height: 50px; }




   
  :root {
    --header-h: 60px;
    --nav-h:    44px;
  }

  
  .topbar-links a      { font-size: 10.5px; padding: 0 8px; }

 
  .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-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) {

  .footer-links        { gap: 0; }
  .footer-links a      { font-size: 10.5px; padding: 3px 7px; }


    .slider-btn { width: 36px; height: 36px; font-size: 1rem; }
    .section-title { margin-bottom: 1.2rem; }


}











