/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#e8e8e8;
    color:#222;
}

/* ---------- MAIN PAGE ---------- */

.page{
    width:95%;
    max-width:1000px;
    margin:0 auto;
    background:white;
    min-height:100vh;
    box-shadow:0 0 25px rgba(0,0,0,.15);
}

/* ---------- HEADER ---------- */

header{
    position:sticky;
    top: 0;

    background:#1f1f1f;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:20px;

    z-index:1000;
}

img{
    display:block;
    max-width:100%;
    height:auto;
    margin-bottom: 20px;
}


.logo{
    width:100%;
    display:flex;
    justify-content:center;
}

.logo img{
    width:100%;
    max-width:100px;
    height:auto;
    display:block;
}

nav{
    width:100%;
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:5px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.25s;
}

nav a:hover{
    color:#ff8800;
}

/* ---------- SECTIONS ---------- */

section{
    scroll-margin-top: 250px;
    padding:30px 25px;
}

h2 {
    font-family: "Rye", serif;
    font-size: 2.3rem;
    font-weight: normal;
    text-align: center;
    color: #5a3412;
    margin-bottom: 30px;
}


p{
    line-height:1.6;
}

img{
    border-radius: 15px;
}

#bio{
    max-width:800px;
    margin:0 auto;
    padding-top: 0px;
    padding-bottom: 30px;
    line-height:1.8;
    text-align:left;
}

.bio-quote{
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    color: #d4af37;          /* Gold accent */
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

.quote-author{
    text-align:center;
    margin-top:-25px;
    margin-bottom:0px;
    font-weight:bold;
    color:#888;
}

.meet-me{
    display: flex;
    justify-content: center;
    margin-top: 75px;
    margin-bottom: 10px;
}

.meet-me img{
    width: 50%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#follow .meet-me {
    margin-top: 30px;
}

#bio h2{
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

#bio p{
    margin-bottom:25px;
}

.flyer{
    display:block;
    width:100%;
    border-radius:15px;
    margin:25px auto;
    box-shadow:0 6px 18px rgba(0,0,0,.2);
}

.socials{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social-logo{
    width:60px;
    height:auto;
    transition:.2s;
}

.social-logo:hover{
    transform:scale(1.1);
}

.western-divider{

    width:220px;
    height:4px;

    margin:45px auto;

    background:linear-gradient(
        to right,
        transparent,
        #b67a2d,
        #d4af37,
        #b67a2d,
        transparent
    );

    border-radius:50px;

    box-shadow:0 0 8px rgba(212,175,55,.35);

}



/* ---------- HERO ---------- */

.hero{
    text-align:center;
}

.hero p{
    margin:20px auto;
    max-width:500px;
}

.hero-image{
    display:block;
    width:100%;
    max-width:500px;
    height:auto;
    margin:30px auto;
    border-radius:15px;
}

.button{
    display:inline-block;
    margin-top:20px;
    background:#ff7a00;
    color:white;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:.25s;
}

.button:hover{
    background:#ff9500;
}

/* ---------- FLYERS ---------- */

.flyer{
    margin:30px auto;
}

.flyer img{
    width:100%;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

/* ---------- GALLERY ---------- */

.gallery-link{
    text-align:center;
    margin-top:35px;
}

.view-gallery-button{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 42px;
    margin-bottom: 20px;

    font-family:"Rye", serif;
    font-size:1.4rem;

    color:#fff;
    text-decoration:none;

    background:linear-gradient(to bottom,#4b4b4b,#1d1d1d);

    border:3px solid #c8892f;
    border-radius:12px;

    box-shadow:
        0 6px 15px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.15);

    transition:all .25s ease;
}

.view-gallery-button:hover{

    color:#ffd76b;

    background:linear-gradient(to bottom,#616161,#2b2b2b);

    transform:translateY(-4px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.45),
        0 0 18px rgba(200,137,47,.35);

}

.view-gallery-button span{

    transition:.25s ease;

}

.view-gallery-button:hover span{

    transform:translateX(8px);

}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 10px;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

#lightbox{

    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:1000;

}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:white;
    font-size:50px;
    cursor:pointer;
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:white;
    font-size:60px;
    cursor:pointer;
    user-select:none;
    padding:20px;
    z-index:1001;
}

#previous{
    left:30px;
}

#next{
    right:30px;
}

.arrow:hover{
    color:#d4af37;
}

/* ---------- EVENTS PAGE ---------- */

.event-grid{
    display:grid;
    gap:30px;
}

#event-page h2{
    margin-bottom:20px;
}

.event-card{
    background:white;
    border-radius:15px;
    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    transition:.25s;

    cursor:pointer;
}

.event-card:hover{
    transform:translateY(-5px);
}

.event-card img{
    width:100%;
    height:250px;
    margin-top: 20px;
    margin-bottom: 20px;

    object-fit:cover;
}

.event-info{
    padding:20px;
}

.event-info h3{

    margin-bottom:10px;

}

.event-link{

    text-decoration:none;
    color:inherit;
    display:block;

}

.event-description{

    margin-top:10px;
    color:#666;
    font-size:.95rem;
    line-height:1.5;

}

.event-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.event-cover{
    margin-bottom:35px;
}

.event-cover img{
    width:100%;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.event-photo{
    width:100%;
    border-radius:12px;
    cursor:pointer;
    object-fit:cover;
    aspect-ratio:1/1;
}

#lightbox-caption{
    color:white;
    text-align:center;
    margin-top:20px;
    font-size:1.1rem;
    max-width:80%;
}

.back-button{
    display:inline-block;
    margin-bottom:25px;
    color:#ff7a00;
    font-weight:bold;
    text-decoration:none;
    transition:.2s;
}

.back-button:hover{
    color:#d4af37;
    transform:translateX(-4px);
}

.event-header{
    background:#f7f7f7;
    border-radius:15px;
    padding:25px;
    margin-bottom:35px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.event-header h1{
    margin-bottom:20px;
    text-align:center;
}

.event-date,
.event-venue{
    font-weight:bold;
    margin-bottom:12px;
}

.event-description{
    margin-top:20px;
    line-height:1.7;
}

.gallery-heading{
    text-align:center;
    margin-bottom:25px;
}


/* ---------- FOLLOW ---------- */

#follow{
    text-align:center;
}

#follow a{
    display:block;
    margin:18px 0;
    font-size:1.2rem;
    text-decoration:none;
    color:#ff7a00;
    font-weight:bold;
}

/* ---------- CONTACT ---------- */

#contact{
    text-align:center;
}

.contact-booking {

    margin-top: 35px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;

    font-family: "Montserrat", sans-serif;

}

.contact-booking .phone {

    font-size: 2rem;
    font-weight: 700;

    color: #1f1f1f;

    text-decoration: none;

    transition: .25s;

}

.contact-booking .email {

    font-size: 1.3rem;

    color: #6b4b1f;

    text-decoration: none;

    transition: .25s;

}

.contact-booking a:hover{

    color:#c8892f;

}

/* ---------- FOOTER ---------- */

footer{
    background:#1f1f1f;
    color:white;
    text-align:center;
    padding:30px;
}

@media (min-width:701px){

    .logo img{
        max-width:300px;
    }

}

/* ------- ADMIN --------*/


.admin-dashboard{
    max-width:1000px;
    margin:40px auto;
    padding:20px;
}

.add-event-btn{
    display:inline-block;
    margin-bottom:25px;
    padding:12px 22px;
    background:#2c7be5;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
}

.admin-event-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:#2b2b2b;
    color:#fff;
    padding:15px;
    margin-bottom:20px;
    border-radius:10px;
}

.admin-event-card img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
}

.admin-event-info{
    flex:1;
}

.admin-event-info h2{
    margin:0 0 10px 0;
}

.admin-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.admin-buttons a{
    text-decoration:none;
    color:#fff;
    background:#444;
    padding:8px 12px;
    border-radius:6px;
    text-align:center;
}

.admin-buttons a:hover{
    background:#666;
}

.admin-dashboard form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:600px;
    margin:30px auto;
}

.admin-dashboard input,
.admin-dashboard textarea{
    padding:12px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:1rem;
}

.admin-dashboard button{
    padding:14px;
    border:none;
    background:#2c7be5;
    color:white;
    font-size:1rem;
    border-radius:6px;
    cursor:pointer;
}

.admin-dashboard button:hover{
    background:#1f64bb;
}



/* ---------- PHONE ---------- */

@media (max-width:700px){

    section{
    padding:10px 20px;
    }

    header{
        flex-direction:column;
    }

    h2{
    margin-bottom:25px;
    text-align:center;
    font-weight: bold;
    color: black;
    }

    .logo{
        width:100%;
        display:flex;
        justify-content:center;
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .logo img{
        width:100%;
        max-width:100px;
        height:100%;
        display:block;
        padding: 0;
        margin-top: 0;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        margin-top: 0;
        padding: 0;
    }

    header h1{
        text-align:center;
    }

    /* Default image */
    img{
        display:block;
        max-width:100%;
        height:auto;
        border-radius: 15px;
    }

    .meet-me{
    display: flex;
    justify-content: center;
    margin: 30px 0;
    }

    .meet-me img{
    width: 70%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

}