/* ==============================
   MAIN STYLESHEET - main_02.css
   PhotoBooth Brisbane
   ============================== */

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ------------------------------
   HEADER
------------------------------ */
.p-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.p-header_strip {
    background: #f8f8f8;
    padding: 5px 0;
    font-size: 14px;
}

.p-header_strip a {
    color: #333;
}

.p-header_nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.p-logo img {
    max-height: 60px;
}

.p-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.p-nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 10px 0;
}

.p-nav ul li.p-active a {
    color: #f7941d;
}

/* ------------------------------
   SLIDER
------------------------------ */
.p-slider_outer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.p-slider {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
}

.p-slide_single {
    flex: 0 0 100%;
    position: relative;
}

.p-slide_single img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.p-slider_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.p-slider_text h1 {
    font-size: 2rem;
    font-weight: 700;
}

.p-slider_text span {
    color: #f7941d;
}

/* Slider navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-prev, .owl-next {
    pointer-events: all;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}

/* ------------------------------
   ABOUT & PACKAGES
------------------------------ */
.p-about, .p-booth_outer {
    padding: 60px 20px;
    text-align: center;
}

.p-about h2, .p-booth_outer h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f7941d;
}

.p-about p, .p-booth_outer ul {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.p-booth_outer ul {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
}

.p-booth_outer ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* ------------------------------
   ENQUIRY FORM
------------------------------ */
.enquiry {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.enquiry h2 {
    font-size: 2rem;
    color: #f7941d;
    margin-bottom: 10px;
}

.enquiry p {
    margin-bottom: 30px;
}

.enquiry-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.enquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

.cta-btn {
    background-color: #f7941d;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #d87f15;
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.site-footer a {
    color: #f7941d;
}

.site-footer p {
    margin-bottom: 5px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 992px) {
    .p-slider_text h1 {
        font-size: 1.6rem;
    }

    .p-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .p-about, .p-booth_outer, .enquiry {
        padding: 40px 15px;
    }

    .p-slider_text h1 {
        font-size: 1.4rem;
    }

    .enquiry-form {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .p-slider_text h1 {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 12px;
    }
}
