@charset "utf-8";
/* CSS Document */

body{
    font-family: 'Segoe UI', sans-serif;
 
}

.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for readability */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

/* Center text properly */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
    
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
}



section{
    padding: 60px 0;
}

h2{
    color:#60E0E0;
    margin-bottom:20px;
}

p{
    font-size:1.1rem;
    line-height:1.6;
}

.section-title {
    color: #402A1D;
    font-size: 2.5rem;
    font-weight: 700;
}

.event-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-date {
    background: linear-gradient(135deg, #402A1D, #6b4a34);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.event-body {
    padding: 20px;
    text-align: center;
}

.event-title {
    color: #402A1D;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-location {
    color: #777;
    font-size: 0.95rem;
}

.btn-shop {
    background: #D9A273;
    border: none;
    color: white;
    border-radius: 30px;
    padding: 10px;
    transition: 0.3s;
}

.btn-shop:hover {
    background: #c88d5f;
}





.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    color: #402A1D;
}

.calendar-day {
    background: white;
    border-radius: 12px;
    height: 100px;
    padding: 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.day-number {
    font-weight: bold;
    color: #402A1D;
}

.event-dot {
    width: 8px;
    height: 8px;
    background: #D9A273;
    border-radius: 50%;
    margin-top: 5px;
}

.calendar-day:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

button:hover {
    opacity: 0.9;
    transform: scale(1.02);
    transition: 0.2s ease;
}
animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

img {
    border-radius: 15px;
}

.row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.btn-custom {
    background-color:#402A1D ;
    color: #60E0E0;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-custom:hover {
    background-color: #d9c2bb;
}
section {
    margin-bottom: 80px;
}

.container {
    padding-top: 40px;
}

/* Title */
.gallery-title {
    color: #402A1D;
    font-size: 2.5rem;
    font-weight: 600;
}

/* Gallery images */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Modal background */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

/* Modal image */
.gallery-modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;

}
.center-logo{
display:block;
margin:0 auto;
}

.hero-text {
  opacity: 0;
 
  animation: fadeInUp 4.0s ease forwards;
  animation-delay: 0.5s; /* delay before it starts */
}

@keyframes fadeInUp {
  to {
    opacity: 1;
   
  }
}

