@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #fdfcfc;
    color: #111;
}
/* Prevent HTML5UP conflict */
.custom-cta {
    all: unset;
    display: block;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fix text visibility on light background */
.cta-section p {
    color: #444;
}

/* Section */
.cta-section {
    padding: 50px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #ae163e, #ec2797);
}

.cta-section h2 {
    font-size: 2.7rem;
    margin-bottom: 15px;
    color: #d4af37;
    letter-spacing: 1px;
}

.cta-section p {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #ccc;
    font-size: 1.1rem;
}

/* Buttons Container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Base Button */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Gold Button */
.cta-btn.gold {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
}

/* Red Button */
.cta-btn.red {
    background: linear-gradient(135deg, #8b0000, #b30000);
    color: #fff;
}

/* Outline Button */
.cta-btn.outline {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

/* Hover Animation */
.cta-btn::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    top: 0;
    left: -130%;
    transform: skewX(-25deg);
    transition: 0.5s;
}

.cta-btn:hover::after {
    left: 130%;
}

.cta-btn:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* Outline Hover */
.cta-btn.outline:hover {
    background-color: #d4af37;
    color: #000;
}

/* Icons */
.cta-btn i {
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 600px) {
    .cta-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}
/* Match HTML5UP section spacing */
.custom-cta {
    padding: 6em 0 4em 0;   /* top | right | bottom | left */
    width: 100%;
    box-sizing: border-box;
}

/* Center content like other sections */
.custom-cta > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
}:root {
  --primary-color: #e0b526;
  --secondary-color: #f0efea;
  --text-dark: #0f172a;
  --text-light: #94a3b8;
  --white: #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--secondary-color);
}

.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}

.section__container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section__container h1 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section__container h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.section__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.5s;
}

.section__card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card h4 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card:hover::before {
  width: 400%;
}

.section__card:hover :is(h4, h5) {
  color: var(--white);
}

.section__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.section__card:hover img {
  border-color: var(--white);
}
@media (max-width: 1024px) {
  .section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .section__card {
    padding: 3.5rem 1.5rem 1.5rem;
  }
}
body.gallery-page{
    min-height:100vh;
    background-color:#a5b1c2;
}
.gallery-section{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:3rem 1rem;
}
.grid-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    width:90vw;
    max-width:900px;
}

.grid-item{
    aspect-ratio:1;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.4);
    overflow:hidden;
}

.grid-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media (max-width:768px){
    .grid-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:480px){
    .grid-container{
        grid-template-columns:1fr;
    }
}
.item-1{
background-image:url(images/1.JPG);
background-size:cover;
}
.item-2{
background-image:url(images/2.jpg);
background-size:cover;
}
.item-3{
background-image:url(images/3.jpg);
background-size:cover;
}
.item-4{
background-image:url(images/4.jpg);
background-size:cover;
}
.item-5{
background-image:url(images/5.jpg);
background-size:cover;
}
.item-6{
background-image:url(images/6.jpg);
background-size:cover;
}
.item-7{
background-image:url(images/richi\ utat.jpg);
background-size:cover;
}
.item-8{
background-image:url(images/31.jpg);
background-size:cover;
}
.item-9{
background-image:url(images/17.jpg);
background-size:cover;
}
.item-10{
background-image:url(images/12.jpg);
background-size:cover;
}
.item-11{
background-image:url(images/11.jpg);
background-size:cover;
}
.item-12{
background-image:url(images/28.jpg);
background-size:cover;
}
.item-13{
background-image:url(images/8.jpg);
background-size:cover;
}
.item-14{
background-image:url(images/inside\ poster.jpg);
background-size:cover;
}
.item-15{
background-image:url(images/32.jpg);
background-size:cover;
}
.item-16{
background-image:url(images/10.jpg);
background-size:cover;
}
.item-17{
background-image:url(images/14.jpg);
background-size:cover;
}
.item-18{
background-image:url(images/15.jpg);
background-size:cover;
}
.item-19{
background-image:url(images/25.jpg);
background-size:cover;
}
.item-20{
background-image:url(images/30.jpg);
background-size:cover;
}
.item-21{
background-image:url(images/SYNOPSIS\ poster2.jpg);
background-size:cover;
}
.item-22{
background-image:url(images/13.jpg);
background-size:cover;
}
.item-23{
background-image:url(images/28.jpg);
background-size:cover;
}
.item-24{
background-image:url(images/9.jpg);
background-size:cover;
}
.grid-item:hover{
transform:scale(1.1) rotate(5deg);
z-index:1;
}
.grid-container:hover .grid-item:not(:hover){
transform:scale(0.95);
}




