*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: 'Playfair Display', serif;
background:#0f0f0f;
color:white;
}

/* NAVBAR */

header{
position:fixed;
top:0;
width:100%;
padding:20px 60px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.3);
backdrop-filter:blur(10px);
z-index:10;
}

nav a{
color:white;
margin-left:30px;
text-decoration:none;
font-size:15px;
letter-spacing:1px;
}

/* HERO */

/* Hero Section */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:white;
}

.hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

.hero-bg img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  top:0;
  left:0;
  opacity:0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg img.active{
  opacity:0.35; /* Faded so text is readable */
}

/* Overlay */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
  z-index:1;
}

/* Hero Content */
.hero-content{
  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:70px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:22px;
  margin-bottom:40px;
  opacity:0.9;
}



/* BUTTONS */

.btn-primary{
background:#c59d5f;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
color:white;
margin-right:15px;
}

.btn-secondary{
border:1px solid white;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
color:white;
}

/* ABOUT */

.about{
padding:120px 20px;
text-align:center;
max-width:900px;
margin:auto;
}

.about h2{
font-size:40px;
margin-bottom:20px;
}

/* GALLERY */

.gallery{
padding:80px 40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.grid img{
width:100%;
height:350px;
object-fit:cover;
border-radius:8px;
transition:transform 0.4s;
}

.grid img:hover{
transform:scale(1.05);
}





/* Auth page styling */
.auth-container{
    max-width:400px;
    margin:120px auto;
    background: rgba(255,255,255,0.05);
    padding:40px;
    border-radius:12px;
    text-align:center;
    color:white;
    box-shadow:0 8px 30px rgba(0,0,0,0.4);
}

.auth-container h2{
    margin-bottom:25px;
    font-size:32px;
}

.auth-container input{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:none;
    border-radius:6px;
}

.auth-container button{
    width:100%;
    padding:12px;
    margin-top:15px;
    border:none;
    border-radius:6px;
    background:#c59d5f;
    color:white;
    font-size:16px;
    cursor:pointer;
}

.auth-container .error{
    color:#ff6b6b;
    margin-bottom:15px;
}









/* Pricing Section */
.pricing-section{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:120px 20px;
  text-align:center;
}

.pricing-section h2{
  font-size:40px;
  margin-bottom:60px;
  color:white;
}

/* Pricing cards container */
.pricing-cards{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
}

/* Individual card */
.card{
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding:40px 25px;
  border-radius:15px;
  width:300px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:white;
}

.card:hover{
  transform: translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.7);
}

.card.featured{
  border:2px solid #c59d5f;
}

.card h3{
  font-size:28px;
  margin-bottom:15px;
}

.card .price{
  font-size:24px;
  font-weight:bold;
  margin-bottom:20px;
}

.card ul{
  list-style: none;
  padding:0;
  margin:0 0 25px 0;
  text-align:left;
}

.card ul li{
  padding:8px 0;
  position:relative;
}

.card ul li::before{
  content: "✓";
  color: #c59d5f;
  margin-right:10px;
}

/* Card button */
.card .btn-primary{
  padding:12px 25px;
  border-radius:30px;
  background:#c59d5f;
  color:white;
  text-decoration:none;
  font-size:16px;
  transition: background 0.3s;
}

.card .btn-primary:hover{
  background:#b3884a;
}

/* Responsive */
@media(max-width:1000px){
  .pricing-cards{
    flex-direction:column;
    align-items:center;
  }
}






/* About Page */
.about-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 20px;
  text-align:center;
  color:white;
}

.about-section .container{
  max-width:800px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding:50px 30px;
  border-radius:15px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.about-section h2{
  font-size:38px;
  margin-bottom:30px;
}

.about-section p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:25px;
}

.about-section .btn-primary{
  padding:12px 30px;
  border-radius:30px;
  background:#c59d5f;
  color:white;
  text-decoration:none;
  font-size:16px;
  transition: background 0.3s;
}

.about-section .btn-primary:hover{
  background:#b3884a;
}

/* Responsive */
@media(max-width:768px){
  .about-section .container{
    padding:40px 20px;
  }

  .about-section h2{
    font-size:32px;
  }

  .about-section p{
    font-size:16px;
  }
}





/* Auth links (signup/login) */
.auth-container a{
    color: #f5d6a0;  /* bright gold-ish color for contrast */
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-container a:hover{
    color: #ffffff; /* turn white on hover for clarity */
}


/* Disclaimer text under username */
.auth-container .disclaimer{
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: left;
}

/* Reusable featured gold border */
.featured{
  border: 2px solid #c59d5f;
  box-shadow: 0 0 20px rgba(197, 157, 95, 0.4);
}




/* Dashboard Layout */
.dashboard{
  display:flex;
  min-height:100vh;
  color:white;
}

/* Sidebar */
.sidebar{
  width:260px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  padding:30px 20px;
  border-right:1px solid rgba(255,255,255,0.1);
}

.sidebar h2{
  margin-bottom:30px;
  font-size:20px;
  color:#c59d5f;
}

/* Nav */
.nav-links{
  list-style:none;
  padding:0;
}

.nav-links li{
  padding:12px;
  margin-bottom:10px;
  cursor:pointer;
  border-radius:8px;
  transition: all 0.3s;
}

.nav-links li:hover{
  background: rgba(255,255,255,0.1);
}

.nav-links li.active{
  background:#c59d5f;
  color:black;
}

/* Logout */
.nav-links .logout a{
  color:#ff6b6b;
  text-decoration:none;
}

/* Content */
.dashboard-content{
  flex:1;
  padding:50px;
}

/* Tabs */
.tab{
  display:none;
}

.tab.active{
  display:block;
}

/* Headings */
.dashboard-content h1{
  font-size:36px;
  margin-bottom:20px;
}

/* Optional card styling inside tabs */
.dashboard-content p{
  opacity:0.85;
}

.events-table .thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    display: block;
}