/* ============================
   FONTS & GLOBAL STYLES
============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    margin: 0;
    padding: 0;
}

body,
p,
li {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Great Vibes', cursive;
    color: #3b2f2f;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ============================
   NAVBAR STYLING
============================ */
.navbar-brand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff !important;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #f8d7a8 !important;
    /* Gold-ish hover */
}

.custom-navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand {
    color: #fff;
    font-weight: 500;
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand {
    color: #000 !important;
    font-weight: 500;
}

/* Default navbar toggler icon (white on transparent background) */
.custom-navbar .navbar-toggler {
    border: none;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Change icon color when navbar is scrolled (black icon on white background) */
.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ============================
   HERO SECTION
============================ */
.bg-hero {
    position: relative;
    background: url('../images/garden.jpg') center bottom / cover no-repeat;
    min-height: 60vh;
    z-index: 1;
}

.bg-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.bg-hero h1,
.bg-hero p {
    color: #fff !important;
}

/* ============================
   ABOUT SECTION
============================ */
#about {
    padding: 100px 0;
    text-align: left;
    /* Make everything left-aligned */
}

#about small {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-weight: 600;
    color: #b19777;
    /* Subtle gold accent */
    display: block;
    margin-bottom: 10px;
}

#about h2 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #3b2f2f;
    margin-bottom: 20px;
}

#about p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    max-width: 100%;
}


/* Venue Background Color */
.venue-bg {
    background-color: #DAA71C;
    /* Light Gold */
    color: #fff;
    /* Make text white for contrast */
}

.venue-bg h2,
.venue-bg h3,
.venue-bg p,
.venue-bg li {
    color: #fff !important;
    /* Ensure all text is white */
}



/* ============================
   FORMS & BUTTONS
============================ */
form .btn {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* ============================
   ICONS
============================ */
a i:hover {
    color: #d4af37;
    /* Gold accent */
}


footer p {
    color: #ffff;
}

/* Responsive Facebook video */
.responsive-video {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* limit size on desktop */
    margin: 0 auto;
    padding-bottom: 80%;
    /* better aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Facebook video */
.responsive-video {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* limit size on desktop */
    margin: 0 auto;
    padding-bottom: 80%;
    /* better aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Adjust for tablets */
@media (max-width: 768px) {
    .responsive-video {
        max-width: 100%;
        padding-bottom: 100%;
    }
}

/* Adjust for mobile */
@media (max-width: 480px) {
    .responsive-video {
        padding-bottom: 120%;
        /* slightly taller for phones */
    }
}



/* Better spacing for mobile */
@media (max-width: 768px) {
    #venue .text-center {
        text-align: center;
        padding: 10px;
    }

    #venue h3 {
        font-size: 1.8rem;
    }

    #venue p,
    #venue li {
        font-size: 1rem;
        line-height: 1.6;
    }
}



/* Mobile Menu Dropdown Background */
@media (max-width: 991px) {
    .custom-navbar .navbar-collapse {
        background-color: #DAA71C;
        /* Gold dropdown for mobile view */
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }

    .custom-navbar .nav-link {
        color: #fff !important;
        /* White text for contrast */
        font-weight: 500;
    }

    .custom-navbar .nav-link:hover {
        color: #000 !important;
        /* Black hover for better visibility */
    }
}

@media (max-width: 480px) {
    .responsive-video {
        padding-bottom: 120%;
        /* even shorter height on small phones */
    }
}
