@font-face {
  font-family: 'Winky Sans';
  src: url('images/Winky_Sans/static/WinkySans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, p, li {
    overflow-wrap: break-word;
    word-break: normal;
text-wrap: balance;
}

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

body{
  font-family: 'Winky Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #663300;
    background: #fafafa;
}

a {
    color: #7fbf2e;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

a:hover {
    color: #663300;
    text-decoration-thickness: 2px;
}

a:active {
    color: #4d2600;
}



/* HEADER */

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #663300;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #663300;
    font-weight: bold;
}

nav a:hover {
    color: #99cc33;
}

/* HERO */

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

.hero-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 20;
}

.hero-logo img {
    display: block;

    width: 220px;
    height: auto;

    background: rgba(255,255,255,1);
    padding: 10px;

    border-radius: 12px;

    box-shadow:
        0 4px 12px rgba(255,255,255,.55);
}

.slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;
    transition: opacity 2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* CONTENT */

section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #663300;
}

.content-section ul {
  list-style-type: "📷 "; /* Uses a camera emoji pointer */
    padding-left: 30px;
    margin-left: 20px;
}



.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.photo-grid img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

p {
  margin-bottom: 1.5rem; /* Adjust this value to get the exact blank line height you want */
}

/* FEATURE CARDS */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.feature h3 {
    color: #663300;
    margin-bottom: 10px;
}

/* CONTACT */

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    font-size: 2rem;

}

/* FOOTER */

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

/* MOBILE MENU */

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 850px) {

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 10px;
        background: white;
        width: 220px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,.2);
        border-radius: 10px;
    }

    nav ul.show {
        display: flex;
    }

}


/* Contact Form */

.quote-form {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
}

.quote-form h2 {
    margin-top: 0;
    color: #663300;
}

.quote-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
  font-family: 'Winky Sans', Arial, Helvetica, sans-serif;
}

.quote-form textarea {
    height: 100px;
    resize: vertical;
}

.quote-form button {
    margin-top: 20px;
    background: #99cc33;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.quote-form button:hover {
    opacity: .9;
}

.required {
    color: red;
}

#event_date {
    color: #757575 !important;
    opacity: 0.7;


}

#event_date:focus,
#event_date:active {
    color: #000000 !important;
    opacity: 1.0 !important;
}

input[type="date"] {
    width: 100%;
min-width:0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;

    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transform-origin: center;
    font-size: 16px;
    line-height: normal;
}




/* Core button styling - Brown Background with White Text */
.submit-quote-btn {
    width: 100%;
    max-width: 375px;
    padding: 14px 28px;
    background-color: #663300; 
    color: #ffffff;            
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid #663300; 
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.15s ease-in-out; /* Slightly faster transition for snappier feedback */
    display: block;
    margin: 20px auto 0 auto; 
}

/* Hover state - Green background, Brown text, looks SLIGHTLY depressed */
.submit-quote-btn:hover {
    background-color: #99cc33; 
    border-color: #99cc33;
    color: #663300;            
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12); /* Shadow shrinks slightly as it drops */
    transform: translateY(1.5px); /* Drops down slightly */
}

/* Active pressed state - Looks FULLY depressed on click */
.submit-quote-btn:active {
    background-color: #7da626; 
    border-color: #7da626;
    color: #4a2400;            
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Shadow almost disappears when flat */
    transform: translateY(3.5px); /* Presses down all the way */
}

/* Focus outline for keyboard accessibility */
.submit-quote-btn:focus {
    outline: 3px solid rgba(153, 204, 51, 0.5);
    outline-offset: 2px;
}

.photo-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.photo-item img {
    width: 100%;
    display: block;
}


/* Home page list of events we do */





/* =========================
   EVENT GRID (MODERN)
   ========================= */

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;

    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

/* =========================
   TILE CARD
   ========================= */

.event-item {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect (desktop) */
.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Tap feedback (mobile) */
@media (hover: none) {
    .event-item:active {
        transform: scale(0.98);
    }
}

/* =========================
   ICONS (SMOOTH SCALING)
   ========================= */

.event-item img {
    width: clamp(42px, 5vw, 62px);
    height: auto;
    object-fit: contain;

    display: block;
    margin-bottom: 4px;
}

/* =========================
   LABEL TEXT
   ========================= */

.event-item span {
    font-size: 14px;
    color: #663300;
    line-height: 1.2;
word-break: keep-all;
}

/* =========================
   TABLETS
   ========================= */

@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .event-item img {
        width: clamp(40px, 8vw, 60px);
    }
}

/* =========================
   PHONES
   ========================= */

@media (max-width: 600px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .event-item {
        padding: 12px;
    }

    .event-item span {
        font-size: 12px;
word-break: keep-all;
    }

    .event-item img {
        width: clamp(38px, 10vw, 55px);
    }
}

/* =========================
   VERY SMALL PHONES (optional)
   ========================= */

@media (max-width: 360px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}







/* Text section */

.content-section {
    padding: 70px 20px; /* upgraded from 60px */
    background: #fff;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;   /* upgraded from 1.6 */
    font-size: 18px;
    color: #663300;
}

.content-container h2 {
    margin-bottom: 15px;
    color: #663300;
}


/* Pricing Page style */

.pricing-section{
    max-width:1000px;
    margin:auto;
    padding:50px 20px;
    text-align:center;
}

.pricing-section h2{
    font-size:3.5rem;
    margin-top: 0.01em;
    margin-bottom: 0.5em;

}

.pricing-intro{
    max-width:700px;
    margin:0 auto 40px;
    color:#666;
    line-height:1.6;
}

.pricing-cards{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.price-card{
    background:#fff;
    border:3px solid #99cc33;
    border-radius:15px;
    padding:40px 30px;
    width:280px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.featured{
    border:3px solid #99cc33;
}

.included-list div{
    background:#fff;
    border:3px solid #99cc33;
    padding:18px;
margin-bottom:5px;
    border-radius:10px;
}

.extra-card{
    background:#fff;
    border:3px solid #99cc33;
    padding:25px 40px;
    border-radius:15px;
    min-width:220px;
}

.price{
    font-size:3rem;
    font-weight:bold;
    color:#663300;
    margin-bottom:15px;
}

.included-item{
    display:flex;
    align-items:center;
    font-size:1.1rem;
    color:#444;
}

.check{
    color:#99cc33;
    font-size:1.5rem;
    font-weight:bold;
    margin-right:10px;
}

.extras{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:25px;
}

.extra-price{
    font-size:2rem;
    color:#663300;
    font-weight:bold;
}

.extra-name{
    margin-top:10px;
}

.bonus-note{
    margin-top:40px;
    padding:20px;
    background:#99cc33;
    color:#663300;
    border-radius:12px;
    font-size:1.1rem;
}


/* FAQ Page */

.faq-item {
    max-width: 900px;
    margin: 0 auto 25px auto;
    padding: 20px;
    background: #fafafa;
    border-left: 5px solid #99cc33;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.faq-question {
    margin: 0 0 10px 0;
    color: #663300;
}

.faq-answer {
    margin: 0;
    line-height: 1.7;
    color: #663300;
}




/* Contract Generator Form */

#contract-form {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #d7d7d7;
    border-top: 4px solid #99cc33;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

#contract-form h2 {
    margin-top: 0;
    color: #663300;
}

#contract-form label {
    display: block;
    margin: 10px 0 2px 0;   /* top right bottom left */
    font-weight: bold;
}

#contract-form input[type="text"],
#contract-form input[type="email"],
#contract-form input[type="tel"],
#contract-form input[type="date"],
#contract-form input[type="time"],
#contract-form select {
    width: 100%;
    max-width: 450px;
    padding: 8px 10px;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: 'Winky Sans', Arial, Helvetica, sans-serif;
}

#contract-form input[type="radio"],
#contract-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

#contract-form .radio-option,
#contract-form .checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    font-weight: normal;
}

#contract-form .required {
    color: red;
}

.warning {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    background: #fff6d8;
    border: 2px solid #d39e00;
    border-left: 8px solid #d39e00;
    color: #222;
    border-radius: 6px;
    font-weight: bold;
    line-height: 1.4;
}

#contract-form small {
    display: block;
    margin-top: 20px;
}

.time-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.time-row > div {
    flex: 1;
    min-width: 150px;
}

#fractionWarning {
    background: #eef7ff;
    border: 2px solid #5b9bd5;
    border-left: 8px solid #5b9bd5;
}

#minimumWarning,
#longWarning {
    background: #fff6d8;
    border: 2px solid #d39e00;
    border-left: 8px solid #d39e00;
}

#veryLongWarning {
    background: #fdecec;
    border: 2px solid #b00020;
    border-left: 8px solid #b00020;
}

.feature_hide {
display:none;
}

#locationWarning { 
    background: #fff6d8;
    border: 2px solid #d39e00;
    border-left: 8px solid #d39e00;
}


/* Contract Display Page */


/* Entire contract page */

#contract-page {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 25px;
    box-sizing: border-box;
}

/* Event summary */
.contract-summary {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
}

.contract-summary th {
    width: 220px;
    text-align: left;
    font-weight: bold;
    padding: 8px 10px;
    vertical-align: top;
    color: #663300;
}

.contract-summary td {
    padding: 8px 10px;
}

.contract-summary tr:nth-child(even) {
    background: #f8f8f8;
}

/* Scrollable contract */
.contract-box {
    border: 1px solid #b8b8b8;
    border-radius: 8px;
    background: #fcfcfc;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 25px;
    margin: 30px 30px;

    box-sizing: border-box;
}

/* Preserve formatting but use page font */
.contract-box pre {
    margin: 0;
    white-space: pre-wrap;
    overflow-wrap: break-word;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.55;
}


@media print {

    .contract-box {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;

        border: none;
        box-shadow: none;
        background: #fff;

        margin: 0;
        padding: 0;
    }

    .contract-box pre {
        white-space: pre-wrap;
        overflow: visible;
    page-break-inside: auto;
    }

}



/* Signature section */
.contract-signature {
    max-width: 650px;
    margin: 35px auto 0;
}

.contract-signature label {
    display: block;
    margin: 12px 0 4px;
    font-weight: bold;
}

.contract-signature input[type=text] {
    width: 100%;
    box-sizing: border-box;
}

.contract-signature input[type=checkbox] {
    margin-right: 8px;
}

#contract-page h2 {
    text-align: center;
    color: #663300;
    margin-bottom: 8px;
}

#contract-page > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px;
}

#contract-page h1 {
    text-align: center;
    color: #663300;
    margin-bottom: 5px;
}

.contract-company {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}
