/* Colour variables */
:root {
    --orange: #ff8700;
    --black: #181818;
    --white: #ffffff;
}

/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=GFS+GFS Didot&display=swap');

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

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Global section spacing */
.section {
    width: 100%;
    padding-left: 25vw;
    padding-right: 25vw;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .section {
        padding-left: 15vw;
        padding-right: 15vw;
    }
}

@media (max-width: 768px) {
    .section {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}

/* Drop shadow effect for sections - on the section itself casting shadow below */
.section:not(.section-top):not(.section-hero):not(.section-info) {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 1.0);
}

/* ================= Section 1 ================= */
.section-top {
    background: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 10;
    position: relative;
}

.map-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
}

.map-button img {
    display: block;
    height: 30px;
    width: auto;
}

@media (max-width: 768px) {
    .map-button img {
        height: 40px;
    }
}

/* ================= Section 2: Big Image ================= */
.section-hero {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 1;
}

.section-hero img {
    width: 100%;
    max-height: 57vh;
    object-fit: cover;
    object-position: center 29%;
    display: block;
}

@media (max-width: 768px) {
    .section-hero img {
        max-height: 60vh;
    }
}

/* ================= Section 3 ================= */
.section-welcome {
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 0;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .section-welcome {
        padding: 40px 0;
    }
}

.welcome-container {
    text-align: center;
    position: relative;
}

.welcome-container h1 {
    font-family: 'Montserrat', 'Playfair Display', serif;
    font-style: italic;
    color: var(--black);
    font-size: 3.2rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0;
}

@media (max-width: 768px) {
    .welcome-container h1 {
        font-size: 2rem;
        max-width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .welcome-container h1 {
        font-size: 1.6rem;
    }
}

.welcome-line {
    display: block;
    position: relative;
    padding: 10px 0;
    margin: 5px 0;
}

.welcome-line .highlight {
    position: absolute;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--orange);
    z-index: -1;
    transition: none;
}

.welcome-line .highlight.animate {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.welcome-line.line-1 {
    padding-left: 40px;
    padding-right: 60px;
}

.welcome-line.line-1 .highlight {
    right: -20px;
    left: auto;
}

.welcome-line.line-2 {
    padding-left: 60px;
    padding-right: 40px;
}

.welcome-line.line-2 .highlight {
    left: -20px;
}

@media (max-width: 768px) {

    .welcome-line.line-1,
    .welcome-line.line-2 {
        padding-left: 0;
        padding-right: 0;
    }

    .welcome-line.line-1 .highlight {
        right: -10%;
    }

    .welcome-line.line-2 .highlight {
        left: -10%;
    }
}

.welcome-container.animated .welcome-line.line-1 .highlight {
    width: 120%;
}

.welcome-container.animated .welcome-line.line-2 .highlight {
    width: 120%;
}

.down-arrow {
    margin-top: 40px;
    font-size: 3rem;
    color: var(--orange);
    opacity: 0;
    transform: translateY(-20px);
    transition: none;
}

.down-arrow.animate {
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}

.welcome-container.animated .down-arrow {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .down-arrow {
        font-size: 2rem;
        margin-top: 30px;
    }
}

/* ================= Section 3.5: Special Offers ================= */
.section-offers {
    background: var(--orange);
    color: var(--black);
    padding: 80px 0;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .section-offers {
        padding: 60px 0;
    }
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

@media (max-width: 968px) {
    .offers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.offers-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .offers-text {
        text-align: center;
    }
}

.section-offers h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--orange);
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    padding: 10px 30px;
    z-index: 1;
    line-height: 1.1;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-offers h2 {
        font-size: 3.5rem;
        padding: 10px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-offers h2 {
        font-size: 3.5rem;
        padding: 8px 15px;
    }
}

.section-offers h2 .word-special {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-offers h2 .word-special .highlight-bg {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-2deg);
    width: 0%;
    height: 110%;
    background: var(--black);
    z-index: -1;
    transition: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.section-offers h2 .word-special .highlight-bg.animate {
    transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition-delay: 0.4s;
}

.section-offers.animated h2 .word-special .highlight-bg {
    width: calc(100% + 30px);
}

.section-offers h2 .word-offers {
    display: block;
    color: var(--black);
}

.offers-conditions {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .offers-conditions {
        font-size: 1.3rem;
    }
}

.offers-list {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--black);
    line-height: 2;
    margin: 0;
    padding-left: 20%;
    text-align: left;
}

@media (max-width: 768px) {
    .offers-list {
        font-size: 1.1rem;
        padding: 0% 10%;
        order: 0;
        list-style-position: inside;
        text-align: center;
    }
}

.offers-list li {
    margin-bottom: 10px;
}

.offers-image {
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 968px) {
    .offers-image {
        min-height: 400px;
        max-width: 80%;
        margin: 0 auto;
    }

    .offers-image img {
        min-height: 400px;
    }
}

/* ================= Section 4 ================= */
.section-pricing {
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .section-pricing {
        padding: 60px 0;
    }
}

.section-pricing h2 {
    color: var(--orange);
    font-size: 5.1rem;
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .section-pricing h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
}

.price-button {
    background: transparent;
    color: var(--orange);
    border: 3px solid var(--orange);
    padding: 16px 34px;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.price-button:hover {
    background: var(--orange);
    color: var(--black);
}

@media (max-width: 768px) {
    .price-button {
        font-size: 1rem;
        padding: 12px 28px;
    }
}

/* ================= Section 5: Hours ================= */
.section-hours {
    background: var(--white);
    padding: 5% 20%;
    font-weight: bold;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    z-index: 3;
    padding-bottom: 8%;
}

@media (max-width: 768px) {
    .section-hours {
        padding: 8% 8%;
        padding-bottom: 20%;
    }
}

.section-hours h2 {
    color: var(--orange);
    font-size: 5.1rem;
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .section-hours h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 768px) {
    .hours-table {
        gap: 20px;
    }
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .hours-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}

.hours-row span {
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .hours-row span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hours-row span {
        font-size: 1.1rem;
    }
}

.hours-line {
    width: 0%;
    height: 6px;
    background: var(--orange);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
    margin: 12px 0 24px 0;
    transition: none;
}

.hours-line.animate {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.hours-line.animated {
    width: 100%;
}

@media (max-width: 768px) {
    .hours-line {
        height: 4px;
        margin: 8px 0 16px 0;
    }
}

/* ================= Section 6: About Us ================= */
.section-about {
    background: var(--orange);
    color: var(--white);
    padding: 5% 20%;
    text-align: center;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .section-about {
        padding: 8% 8%;
    }
}

.section-about h2 {
    font-size: 5.11rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    z-index: 1;
}

@media (max-width: 768px) {
    .section-about h2 {
        font-size: 3rem;
        padding: 15px 25px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-about h2 {
        font-size: 2.2rem;
        padding: 10px 20px;
    }
}

.section-about h2 .highlight-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--black);
    z-index: -1;
    transform: skewX(-10deg);
    transition: none;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 1.0);
}

.section-about h2 .highlight-bg.animate {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.section-about.animated h2 .highlight-bg {
    width: 100%;
}

.section-about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

@media (max-width: 768px) {
    .section-about p {
        font-size: 1rem;
    }
}

/* ================= Section 7: Contact ================= */
.section-contact {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .section-contact {
        padding: 60px 5%;
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .map-container {
        min-height: 350px;
    }
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-container h2 {
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-form-container h2 {
        font-size: 2rem;
        text-align: center;
    }
}

.contact-info {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-info {
        font-size: 0.9rem;
        margin-bottom: 20px;
        text-align: center;
    }
}

.form-group {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--white);
}

@media (max-width: 768px) {
    .form-group label {
        text-align: center;
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px 14px;
        text-align: center;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 768px) {
    .form-group textarea {
        min-height: 100px;
    }
}

.submit-button {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.submit-button:hover {
    background: var(--orange);
}

@media (max-width: 768px) {
    .submit-button {
        font-size: 1rem;
        padding: 12px 32px;
        width: 100%;
    }
}

.contact-image {
    width: 100%;
    margin-top: 60px;
    border-radius: 8px;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .contact-image {
        margin-top: 40px;
    }
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ================= Section 8: Copyright ================= */
.section-info {
    background: var(--white);
    color: var(--black);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .section-info {
        padding: 60px 0;
    }
}

.section-info p {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-info p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
}

/* Form submission feedback */
.form-message {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

@media (max-width: 768px) {
    .form-message {
        text-align: center;
    }
}

.form-message.success {
    background: #4caf50;
    color: white;
    display: block;
}

.form-message.error {
    background: #f44336;
    color: white;
    display: block;
}