
: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: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    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);
    text-shadow: 0px 2px 3px #00000085;
}
.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: #4b300117;
  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 20px;
}

/* ===================== HERO SECTION ===================== */
.hero-section { padding: 20px 0 0; }

.hero-inner {
  display: grid;
    grid-template-columns: 1fr 480px;
    gap: 12px;
    height: 480px;
}

/* SLIDER */
.hero-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.hero-slider { width: 100%; height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active { opacity: 1; z-index: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88) 60%);
  padding: 40px 20px 20px;
  z-index: 2;
}
.slide-tag {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}
.slide-caption h2 { font-size: 22px; font-weight: 700; line-height: 1.2; }
.slide-caption h2 a { color: var(--white); }
.slide-caption h2 a:hover { color: var(--gold-light); }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.slider-btn:hover { background: var(--gold); color: #000; }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 6px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* FEATURED GRID */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 480px;
}

.feat-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  display: block;
}
.feat-card.tall {
    grid-row: span 2;
}
.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feat-card:hover img { transform: scale(1.05); }
.feat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 24px 10px 10px;
}
.feat-overlay span {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ===================== TICKER ===================== */
.ticker-bar {
  display: flex;
  align-items: center;
  background: #ea9700;
  margin: 12px 0;
  border-radius: 10px;
  overflow: hidden;
  height: 36px;
  width: 100%;
}
.ticker-label {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 12px;
  width: 100%;
  
}
.ticker-track span {
    display: inline-block;
    white-space: nowrap;
    color: rgb(255 255 255);
    text-shadow: 0px 3px 5px rgb(0 0 0 / 70%);
    font-size: 15px;
    font-weight: 500;
    animation: ticker 35s linear infinite;
    letter-spacing: 1px;
   
}

.ticker-track  span  a {
    margin: 0px 15px;
}


.ticker-track  span  a:hover {
    color: blue;     
}


@keyframes ticker {
  from { transform: translateX(30%); }
  to   { transform: translateX(-100%); }
}

/* ===================== CONTENT WRAPPER ===================== */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    align-items: start;
}

/* ===================== SECTIONS ===================== */
.gallery-section {
  margin-bottom: 3px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.gallery-section.in-view { opacity: 1; transform: none; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
}
.section-title a { color: inherit;font-weight: 500;}
.section-title a:hover { color: var(--gold-light); }

.see-all {
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.see-all:hover { color: var(--gold); }

/* GALLERY GRID - actress layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 12px;
    min-height: 400px;
   /* border-bottom: 2px solid #e8a020; */
    border-radius: 2px;
    margin-bottom: 15px;
}
.gallery-card {
  border-radius: 6px;
  overflow: hidden;
  background:#ffffff;
}
.gallery-card a { display: block; height: 100%; position: relative; }

.gallery-card.featured-card {
    height: 490px;
}

.gallery-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.35s ease;
    border: 1px solid #00000033;
}
.gallery-card:hover img { transform: scale(1.04); }

.card-info {
    padding: 10px 12px 12px;
    background: #ffffff;
    margin-top: 10px;
}
.card-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000000a3;
  margin-bottom: 4px;
  line-height: 1.3;
}
.card-link {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* SIDE LIST */
.gallery-side-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    transition: background var(--transition);
    padding: 4px;
}
.side-item:hover {
    background: #80808038;
    color: white !important;
}


.side-item img {
    width: 155px;
    height: 105px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border-radius: 4px;
}

.side-info {
    margin-top: 13px;
}
.side-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000000a3;
  line-height: 1.3;
  margin-bottom: 3px;
}
.side-info span {
    font-size: 13px;
    color: #ed9d10;
    font-weight: 500;
}

/* AD STRIP */
.ad-strip {
  margin-bottom: 28px;
  text-align: center;
}

/* TWO-COL */
.two-col-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.gallery-section.half { margin-bottom: 0; }

/* GALLERY CARD MAIN (half-width) */
.gallery-card-main {
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 10px;
}
.gallery-card-main a {
  display: block;
  position: relative;
}
.gallery-card-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.35s ease;
}
.gallery-card-main:hover img { transform: scale(1.04); }

/* COMPACT LIST */
.compact-list {
    list-style: none;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.compact-list li {
    width: 49%;
}

.compact-list li a {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    padding: 7px;
    transition: background var(--transition);
}

.compact-list li a:hover { background: #80808038; }


.compact-list li img {
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border-radius: 3px;
    width: 100%;
    height: 160px;
}

.compact-list li h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000000a3;
  line-height: 1.3;
  margin-bottom: 3px;
}
.compact-list li span {
  font-size: 13px;
  color: var(--gold);
}

/* EVENTS GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.event-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  display: block;
}
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.35s ease;
}
.event-card:hover img { transform: scale(1.05); }
.event-info {
  padding: 8px 10px 10px;
}
.event-tag {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 5px;
}

.event-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #000000a3;
    line-height: 1.3;
}


/* WALLPAPERS GRID */
.wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wp-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg3);
  display: block;
  /* aspect-ratio: 2/3; */
}
.wp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.35s ease;
}
.wp-card:hover img { transform: scale(1.08); }
.wp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.wp-card:hover .wp-overlay { opacity: 1; }
.wp-overlay span {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 5px 12px;
  border-radius: 4px;
}

/* ===================== SIDEBAR ===================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + var(--nav-h) + 12px);
}


.sidebar-widget {
    background: #ffffff;
    border: 1px solid #2e2e2e26;
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s;
}


.sidebar-widget.in-view { opacity: 1; transform: none; }

.widget-header {
  background: var(--gold);
  padding: 9px 14px;
}
.widget-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0px 2px 3px #00000057;
}

.latest-list {
  list-style: none;
}
.latest-list li {
    border-bottom: 1px solid #2e2e2e47;
}
.latest-list li:last-child { border-bottom: none; }
.latest-list li a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 12px;
  transition: background var(--transition);
}
.latest-list li a:hover {
    background: #80808038;
}
.latest-list li img {
  width: 64px;
  height: 54px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border-radius: 4px;
}
.latest-list li h4 {
    font-size: 12.5px;
    font-weight: 600;
    color: #000000a3;
    line-height: 1.3;
    margin-bottom: 3px;
}
.latest-list li span {
  font-size: 11px;
  color: var(--gold);
}

/* CATEGORIES */
.cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px;
}
 
.cat-btn {
    background: #1e1e1ead;
    border: 1px solid #2e2e2e38;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}


.cat-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ===================== FOOTER ===================== */
/*==================  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;
}


/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #000;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(232,160,32,0.4);
}
.scroll-top.visible { opacity: 1; transform: none; }
.scroll-top:hover { background: var(--gold-light); }






@media (max-width: 1400px) {
  .site-main           { padding: 0 14px 36px; }
     .hero-inner {
        grid-template-columns: 1fr 400px;
        height: 450px;
    }
    .wallpaper-grid      { grid-template-columns: repeat(4, 1fr); }


    .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 450px;
}



}


@media (max-width: 1300px) {
  .site-main           { padding: 0 14px 36px; }
     .hero-inner {
        grid-template-columns: 1fr 400px;
        height: 430px;
    }
  .wallpaper-grid      { grid-template-columns: repeat(3, 1fr); }
 
      .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 430px;
}
}



@media (max-width: 1024px) {
  /* Header */
  .header-inner        { gap: 14px; }
  .header-ad-slot      { display: none; }          
  .header-search input { width: 160px; }


  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr 240px;
    height: 420px;
  }

  .featured-grid       { height: 420px; }
  .hero-slider-wrap    { height: 420px; }
  .slide-caption h2    { font-size: 19px; }

  /* Content layout */
  .content-wrapper     { grid-template-columns: 1fr 260px; gap: 16px; }

  /* Sections */
  .gallery-grid        { grid-template-columns: 220px 1fr; }
  .gallery-card.featured-card { height: 290px; }
  .gallery-card img    { height: 220px; }
  .events-grid         { grid-template-columns: repeat(2, 1fr); }
  .wallpaper-grid      { grid-template-columns: repeat(4, 1fr); }

  /* Two-col */
  .two-col-sections    { gap: 14px; }
  .gallery-card-main img { height: 175px; }

  /* Sidebar */
  .sidebar             { top: calc(var(--topbar-h) + var(--header-h) + var(--nav-h) + 10px); }
}



@media (max-width: 768px) {
  /* 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);
  }

  /* Hero */
  .hero-section        { padding: 14px 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    height:               auto;
    gap:                  10px;
  }
  .hero-slider-wrap    { height: 320px; border-radius: 6px; }
  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows:    1fr;
    height:                130px;
  }
  .feat-card.tall      { grid-row: span 1; }
  .feat-overlay span   { font-size: 10px; }

  /* Ticker */
  .ticker-bar          { height: 32px; }
  .ticker-label        { font-size: 10px; padding: 0 10px; }
  .ticker-track span   { font-size: 12px; }

  /* Content layout — single column */
  .content-wrapper     { grid-template-columns: 1fr; gap: 0; }
  .sidebar             { position: static; margin-top: 24px; }

  /* Sections */
  .section-title       { font-size: 19px; }
  .gallery-grid        { grid-template-columns: 1fr; }
  .gallery-card.featured-card { height: 260px; }
  .gallery-card img    { height: 200px; }

  .gallery-side-list   { flex-direction: row; flex-wrap: wrap; }
  .side-item           { width: calc(50% - 4px); flex-shrink: 0; }
  .side-item img       { width: 60px; height: 52px; }

  .two-col-sections    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-card-main img { height: 160px; }
  .compact-list li img { width: 58px; height: 48px; }

  .events-grid         { grid-template-columns: repeat(2, 1fr); }
  .event-card img      { height: 155px; }

  .wallpaper-grid      { grid-template-columns: repeat(3, 1fr); }

  /* Sidebar widgets side-by-side on tablet */
  .sidebar             { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
  .sidebar-ad          { grid-column: span 2; }

  /* Footer */
  .footer-links a      { font-size: 11px; padding: 4px 8px; }
}



@media (max-width: 600px) {
  :root {
    --topbar-h: 0px;   /* hide topbar entirely on small phones */
    --header-h: 56px;
    --nav-h:    42px;
  }

  /* Topbar — hide on small phones */
  .topbar              { display: none; }

  /* Header */
  .site-header         { position: sticky; top: 0; }
  .header-inner        { padding: 0 12px; gap: 10px; }
  .logo-t1, .logo-one  { font-size: 20px; }
  .logo-photos         { font-size: 10px; letter-spacing: 4px; }

  /* Ticker */
  .ticker-bar          { margin: 8px 0; border-radius: 4px; }

  /* Hero */
  .hero-section        { padding: 10px 0 0; }
  .hero-slider-wrap    { height: 260px; }
  .slide-caption       { padding: 30px 14px 14px; }
  .slide-caption h2    { font-size: 16px; }
  .slide-tag           { font-size: 9px; }
  .slider-btn          { width: 32px; height: 32px; font-size: 12px; }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows:    1fr 1fr;
    height:                160px;
  }
  .feat-card.tall      { grid-row: span 2; }

  /* Sections */
  .gallery-section     { margin-bottom: 24px; }
  .section-title       { font-size: 17px; }
  .see-all             { font-size: 11px; }

  .gallery-card.featured-card { height: 220px; }
  .gallery-card img    { height: 180px; }
  .card-info h3        { font-size: 14px; }

  .gallery-side-list   { flex-direction: column; }
  .side-item           { width: 100%; }

  .two-col-sections    { grid-template-columns: 1fr; gap: 0; }
  .gallery-section.half { margin-bottom: 24px; }
  .gallery-card-main img { height: 200px; }

  .events-grid         { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .event-card img      { height: 140px; }
  .event-info h4       { font-size: 12px; }

  .wallpaper-grid      { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Sidebar — single column again */
  .sidebar             { display: flex; flex-direction: column; gap: 14px; }
  .sidebar-ad          { grid-column: unset; }

  /* Ad strip */
  .ad-strip .ad-placeholder { min-height: 60px; font-size: 10px; }

  /* Footer */
  .site-footer         { padding: 22px 14px; }
  .footer-links        { gap: 0; }
  .footer-links a      { font-size: 10.5px; padding: 3px 7px; }
}


/* ------------------------------------------------------------------
   XS — Standard phone  (≤ 480px)
   ------------------------------------------------------------------ */
@media (max-width: 480px) {
  :root { --header-h: 52px; --nav-h: 40px; }

  .site-main           { padding: 0 10px 28px; }

  /* Header */
  .logo-t1, .logo-one  { font-size: 18px; }
  .logo-photos         { font-size: 9.5px; letter-spacing: 3px; }

  /* Hero */
  .hero-slider-wrap    { height: 230px; }
  .slide-caption h2    { font-size: 14px; }
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows:    1fr;
    height:                100px;
  }
  .feat-card.tall      { grid-row: span 1; }

  /* Nav */
  .nav-list li a       { font-size: 14px; padding: 12px 16px; }

  /* Sections */
  .section-header      { flex-wrap: wrap; gap: 4px; }
  .section-title       { font-size: 16px; }

  .gallery-grid        { grid-template-columns: 1fr; }
  .gallery-card.featured-card { height: 200px; }
  .gallery-card img    { height: 160px; }
  .card-info           { padding: 8px 10px 10px; }
  .card-info h3        { font-size: 13px; }
  .card-link           { font-size: 11px; }

  .side-item img       { width: 56px; height: 48px; }
  .side-info h4        { font-size: 12px; }

  .gallery-card-main img { height: 180px; }
  .compact-list li img { width: 54px; height: 44px; }
  .compact-list li h4  { font-size: 12px; }

  .events-grid         { grid-template-columns: 1fr 1fr; gap: 7px; }
  .event-card img      { height: 120px; }
  .event-info          { padding: 6px 8px 8px; }
  .event-info h4       { font-size: 11.5px; }

  .wallpaper-grid      { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* Sidebar */
  .latest-list li img  { width: 58px; height: 48px; }
  .latest-list li h4   { font-size: 12px; }
  .widget-header h3    { font-size: 15px; }
  .cat-btn             { font-size: 11px; padding: 5px 10px; }

  /* Scroll top */
  .scroll-top          { width: 38px; height: 38px; font-size: 22px; bottom: 16px; right: 14px; }

  /* Footer */
  .footer-links        { flex-direction: column; align-items: center; gap: 2px; }
  .footer-links a      { border-right: none; border-bottom: 1px solid var(--border); width: 100%; text-align: center; padding: 6px 0; }
  .footer-links a:last-child { border-bottom: none; }
}



@media (max-width: 360px) {
  :root { --header-h: 48px; --nav-h: 38px; }

  .site-main           { padding: 0 8px 24px; }

  /* Logo shrink */
  .logo-t1, .logo-one  { font-size: 16px; }
  .logo-photos         { font-size: 8.5px; letter-spacing: 2.5px; }

  /* Hero slider minimal height */
  .hero-slider-wrap    { height: 200px; }
  .slide-caption       { padding: 24px 12px 12px; }
  .slide-caption h2    { font-size: 13px; }
  .slider-btn          { width: 28px; height: 28px; font-size: 11px; }
  .featured-grid       { grid-template-columns: 1fr 1fr; height: 90px; }

  /* Section headers */
  .section-title       { font-size: 15px; }
  .gallery-card.featured-card { height: 180px; }
  .gallery-card img    { height: 140px; }

  /* Compact list tighter */
  .compact-list li img { width: 48px; height: 40px; }
  .compact-list li h4  { font-size: 11.5px; }
  .compact-list li a   { padding: 5px; gap: 7px; }

  /* Events single col */
  .events-grid         { grid-template-columns: 1fr; gap: 7px; }
  .event-card img      { height: 160px; }

  /* Wallpapers 2-col */
  .wallpaper-grid      { grid-template-columns: repeat(2, 1fr); gap: 5px; }

  /* Latest list */
  .latest-list li img  { width: 52px; height: 44px; }
  .latest-list li h4   { font-size: 11.5px; }

  /* Ticker */
  .ticker-label        { font-size: 9px; padding: 0 8px; }
  .ticker-track span   { font-size: 11px; }

  /* Footer */
  .footer-copy p       { font-size: 11px; }
}


@media (hover: none) {
  .feat-card:hover img,
  .gallery-card:hover img,
  .gallery-card-main:hover img,
  .event-card:hover img,
  .wp-card:hover img   { transform: none; }

  .wp-card .wp-overlay { opacity: 1; background: rgba(0,0,0,0.35); }
  .wp-overlay span     { background: rgba(232,160,32,0.85); }
}



@media print {
  .topbar, .primary-nav, .ad-placeholder, .ad-strip,
  .ticker-bar, .sidebar-ad, .scroll-top,
  .slider-btn, .slider-dots { display: none !important; }

  body                 { background: #fff; color: #000; }
  .site-header         { position: static; border-bottom: 1px solid #ccc; }
  .site-main           { max-width: 100%; padding: 0 10px; }
  .content-wrapper     { grid-template-columns: 1fr; }
  .hero-inner          { grid-template-columns: 1fr; }
  a                    { color: #000; }
}
