/*---------------- Global Styles ----------------*/
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #f1f1f1;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/*---------------- Links ----------------*/
a {
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #ffd700 !important;
}

/*---------------- Navbar ----------------*/
.navbar {
    padding: 1rem 2rem;
}
.navbar .nav-link {
    color: #f1f1f1 !important;
    font-weight: 500;
    margin-right: 15px;
}
.navbar .nav-link:hover {
    color: #ffd700 !important;
}
.navbar .btn-warning {
    font-weight: bold;
    transition: 0.3s;
}
.navbar .btn-warning:hover {
    background-color: #fff;
    color: #111;
}
.btn-warning {
    background-color: #f5c125 !important;
    border-color: #e0ad13 !important;
    color: rgb(240, 199, 19) !important;
}

/*---------------- Hero Section ----------------*/
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: #ffd700;
}

}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
}
.hero .btn-outline-warning {
    border: 2px solid #ffd700;
    color: #ffd700;
}
.hero .btn-outline-warning:hover {
    background-color: #ffd700;
    color: #111;
}

/*---------------- About Section ----------------*/
#about {
    padding: 80px 0;
    text-align: center;
}
#about h2 {
    font-size: 2.5rem;
    color: #ffd700;
}
#about p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
    color: #e0e0e0;
}

/*---------------- Services Section ----------------*/
#services {
    padding: 80px 0;
}
/*---------------- Services Section Cards Fix ----------------*/
.service-card, 
.card.bg-secondary {
    display: flex;
    flex-direction: column;      /* stack content vertically */
    justify-content: space-between; /* push button to bottom */
    height: 100%;                /* make all cards same height */
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #1c1c1c;   /* consistent dark background */
    border: 1px solid #333;
}

.service-card i,
.card.bg-secondary i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.service-card h5,
.card.bg-secondary h5 {
    color: #ffd700;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.service-card p,
.card.bg-secondary p {
    color: #f5f1ed;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;  /* uniform spacing before button */
    flex-grow: 1;          /* grow to fill space, keeps button at bottom */
}

.service-card .btn,
.card.bg-secondary .btn {
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
    background-color: #ffd700;
    border: 1px solid #e0ad13;
    transition: all 0.3s ease;
}

.service-card .btn:hover,
.card.bg-secondary .btn:hover {
    background-color: #fff;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 217, 0, 0.9);
}
/* Keep Learn More / Book Now buttons white text */
.card.bg-secondary .btn,
.service-card .btn {
    color: #fff !important;          /* force white text */
    background-color: #ffd700;       /* yellow background */
    border: 1px solid #e0ad13;
}

.card.bg-secondary .btn:hover,
.service-card .btn:hover {
    background-color: #fff;          /* hover background */
    color: #111 !important;          /* dark text on hover */
}
.service-card p {
    color: #f5f1ed;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px; /* optional, consistent spacing */
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(207, 184, 53, 0.2);
}
.service-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}
.service-card h5 {
    color: #ffd700;
}

/*---------------- Upcoming Events ----------------*/
#events {
    padding: 80px 0;
}
#events h2 {
    color: #ffd700;
}
.card.bg-secondary {
    background-color: #1c1c1c !important;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.card.bg-secondary:hover {
    transform: translateY(-10px);
    border: 2px solid #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

/*---------------- Gallery ----------------*/
#gallery {
    padding: 80px 0;
}
#gallery h2 {
    color: #ffd700;
}
#gallery img {
    border-radius: 15px;
    transition: all 0.3s ease;
}
#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/*---------------- Booking Form ----------------*/
#booking {
    padding: 80px 0;
}
#booking h2 {
    color: #ffd700;
}
#booking input,
#booking select,
#booking textarea {
    background-color: #1c1c1c;
    border: 1px solid #333;
    color: #f1f1f1;
    border-radius: 10px;
    padding: 12px;
}
#booking input:focus,
#booking select:focus,
#booking textarea:focus {
    border-color: #ffd700;
    outline: none;
    box-shadow: 0 0 8px #ffd700;
}
#booking button {
    background-color: #ffd700;
    color: #111;
    font-weight: bold;
    transition: 0.3s;
}
#booking button:hover {
    background-color: #fff;
    color: #111;
}

/*---------------- Contact Section ----------------*/
#contact {
    padding: 80px 0;
}
#contact h2 {
    color: #ffd700;
}
#contact .bi {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
#contact iframe {
    border-radius: 15px;
}

/*---------------- Footer ----------------*/
footer {
    background-color: #111;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
}

/*---------------- Responsive ----------------*/
@media(max-width: 768px){
    .hero h1 {
        font-size: 2rem;
    }
    .service-card i {
        font-size: 2.5rem;
    }
}
.contact-card {
    background-color: #1c1c1c;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-8px);
    border: 2px solid #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.contact-card i {
    margin-bottom: 10px;
}

#contact a:hover {
    color: #ffd700 !important;
}
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #2a2a2a; /* darker gray for card */
    color: #f8f8f8; /* default text color */
}

.event-card h5 {
    color: #ffd700; /* Gold title color */
    font-weight: 700;
    font-size: 1.25rem;
}

.event-card p {
    color: #d1d1d1; /* Slightly lighter gray for description */
    font-size: 0.95rem;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}
.gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}
.card h5 {
    color: #ffd700;   /* Gold color for headings */
    font-weight: 700;
    font-size: 1.25rem;
}
.card .form-control {
    background-color: #2a2a2a; /* Dark input background */
    color: #f8f8f8;           /* Light text */
    border: 1px solid #ffd700; /* Gold border */
}

.card .form-control::placeholder {
    color: #d1d1d1;           /* Soft gray placeholder */
}

.card .form-control:focus {
    border-color: #ffd700;    /* Gold border on focus */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Card heading */
.card h5 {
    color: #ffd700;   /* Gold heading */
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
}

/* Form labels */
.card .form-label {
    color: #ffd700;   /* Gold labels for Name, Email, Message */
    font-weight: 600;
}

/* Form inputs */
.card .form-control {
    background-color: #2a2a2a; /* Dark input background */
    color: #f8f8f8;            /* Light text */
    border: 1px solid #ffd700; /* Gold border */
}

.card .form-control::placeholder {
    color: #d1d1d1;            /* Soft gray placeholder */
}

.card .form-control:focus {
    border-color: #e2c20e;      /* Gold border on focus */
    box-shadow: 0 0 10px rgba(223, 191, 10, 0.945);
}

/* Button hover effect */
.card button.btn-warning:hover {
    background-color: #e6c200; /* Darker gold on hover */
    box-shadow: 0 0 15px rgba(255, 217, 4, 0.973);
}

/* Social Media Icon Hover */
.btn-outline-warning:hover {
    color: #000;
    background-color: #a76181;
    border-color: #000000;
    transform: scale(1.15);
    transition: 0.3s;
}
.btn-warning:hover {
    background-color: #e6c200 !important;
    box-shadow: 0 0 25px rgba(238, 210, 0, 0.904);
    transform: translateY(-3px);
    transition: 0.3s;
}
   .show-more-btn {
        padding: 15px 35px;
        font-size: 18px;
        color: white;
        background: linear-gradient(45deg, #ff6a00, #ee0979);
        border: none;
        border-radius: 30px;
        text-decoration: none;
        cursor: pointer;
        transition: 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .show-more-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    /* ---------------- Button Fixes ---------------- */
.btn-warning {
    background-color: #ffc107 !important; /* Bright yellow */
    color: #fff !important;               /* White text */
    border: none !important;
    font-weight: bold;
    transition: 0.3s;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #e0a800 !important; /* Slightly darker yellow */
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 210, 0, 0.7);
}

.btn-outline-warning {
    color: #ffc107 !important;
    border-color: #ffc107 !important;
    transition: 0.3s;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
    color: #fff !important;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
}

.show-more-btn {
    background-color: #ffc107 !important;
    color: #fff !important;
    padding: 12px 35px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.show-more-btn:hover {
    background-color: #e0a800 !important;
    transform: scale(1.05);
}

.service-card {
    background-color: #1c1c1c;  /* Dark background matching theme */
    border: 1px solid #444;     /* Slightly lighter border */
    border-radius: 15px;
    transition: all 0.3s ease;
    color: #f1f1f1;             /* Light text inside */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;      /* Gold on hover */
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2); /* subtle gold shadow */
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd700;             /* Gold icon */
}

.service-card h5 {
    color: #ffd700;             /* Gold title */
    font-weight: 700;
}

.service-card p {
    color: #e0e0e0;             /* Light grey for description */
    font-size: 1rem;
}