/* ==========================================================================
   TeamTales Corporate Master Stylesheet (styles_2.css)
   Contains full structural layout with Corporate Sky Blue branding accents
   ========================================================================== */

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: #f6f8fa;
    color: #222;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 0;
}

.container.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

.logo img {
    height: 2vw;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

nav .nav-links li a {
    text-decoration: none;
    color: #94d2e3; /* Changed to Corporate Blue */
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

nav .nav-links li a.active,
nav .nav-links li a:hover {
    background: #94d2e3; /* Changed to Corporate Blue */
    color: #fff;
}

/* Back to Weddings Link (Sits on the far right of header) */
nav .nav-links li.wedding-tab a {
    color: #ed96bf;
    border: 2px solid #ed96bf;
    margin-left: 10px;
}

nav .nav-links li.wedding-tab a:hover {
    background: #ed96bf;
    color: #fff;
}

/* Triggers on screens smaller than tablet size */
@media (max-width: 768px) {
    .container.header-flex {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 20px;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    nav .nav-links {
        gap: 10px;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav .nav-links li a {
        display: block;
        text-align: center;
        padding: 10px 16px;
    }

    nav .nav-links li.wedding-tab a {
        margin-left: 0;
        width: 100%;
    }
}

main {
    width: 100vw;
    max-width: 2500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

@media (max-width: 768px) {
    main {
        margin-top: 50px;
    }
}

main div {
    margin-bottom: 100px;
}

footer {
    background: #94d2e3; /* Changed to Corporate Blue */
    color: #fff;
    text-align: center;
    padding: 18px 0;
    margin-top: 48px;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.centered-video {
    display: block;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.centered-video video,
.centered-video iframe {
    border: 4px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 12px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .centered-video {
        width: 90%;
    }
}

.reviews-section {
    background: #f2fafc; /* Changed to Light Blue Tint */
    border: 2px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 16px;
    padding: 32px 24px;
    margin: 48px auto 0 auto;
    max-width: 700px;
    width: 70%;
    box-shadow: 0 2px 12px rgba(148, 210, 227, 0.07);
    text-align: center;
}

.reviews-section h2 {
    color: #94d2e3; /* Changed to Corporate Blue */
    margin-bottom: 24px;
    font-size: 2rem;
}

.review {
    margin-bottom: 24px;
}

.review-text {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 8px;
    font-style: italic;
}

.reviewer {
    color: #94d2e3; /* Changed to Corporate Blue */
    font-weight: 600;
    font-size: 1rem;
}

.contact-cta {
    border-radius: 16px;
    padding: 32px 24px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

@media (max-width: 600px) {
    .contact-cta {
        width: 90%;
        margin-top: 0px;
    }
}

.contact-cta p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #94d2e3; /* Changed to Corporate Blue */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.cta-button:hover {
    background: #7cbacb; /* Changed to Deeper Corporate Blue */
}

h2 {
    color: #94d2e3; /* Changed to Corporate Blue */
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.hero {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.hero,
.Customisation,
.setup {
    text-align: center;
}

.Customisation ul,
.setup ul,
.hero ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 24px auto;
    color: #7cbacb; /* Changed to Accent Blue */
}

.team-member {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #f2fafc; /* Changed to Light Blue Tint */
    border: 2px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 900px;
    margin: 40px auto;
}

.team-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #94d2e3; /* Changed to Corporate Blue */
    background: #fff;
}

.team-info h2 {
    margin: 0 0 8px 0;
    color: #94d2e3; /* Changed to Corporate Blue */
    font-size: 2rem;
}

.team-info h3 {
    margin: 0 0 16px 0;
    color: #2d6cdf;
    font-size: 1.2rem;
    font-weight: 500;
}

.team-info p {
    color: #444;
    font-size: 1.1rem;
    margin: 0;
}


.Customisation img {
    max-width: 900px;
    width:70%;
    margin: 0 auto 48px auto;
    padding: 0 24px;
}

.setup img {
    max-width: 900px;
    width:70%;
    margin: 0 auto 48px auto;
    padding: 0 24px;
}


@media (max-width: 600px) {
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px 16px;
        margin: 20px auto;
        max-width: 70%;
    }

    .team-photo {
        margin: 0 auto; 
    }

    .team-info h2,
    .team-info h3 {
        margin-top: 0; 
    }
}

.slideshow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

@media (max-width: 600px) {
    .slideshow-container {
        max-width: 90%;
        gap: 16px;
        margin: 40px auto;
        margin-bottom: 0px;
        max-width: 600px;
        border-radius: 16px;
        padding: 0px;
    }
}

.slide-images {
    width: 320px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(148, 210, 227, 0.07);
    position: absolute;
    left: 0;
    top: 0;
}

.slide-btn {
    background: #94d2e3; /* Changed to Corporate Blue */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: #7cbacb; /* Changed to Deeper Corporate Blue */
}

.contact-form-container {
    max-width: 550px;
    margin: 0 auto 48px auto;
    background: #f2fafc; /* Changed to Light Blue Tint */
    border: 2px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(148, 210, 227, 0.07);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    font-weight: 600;
    color: #94d2e3; /* Changed to Corporate Blue */
    margin-bottom: 4px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1.5px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7cbacb; /* Changed to Accent Blue */
    background: #fafdff;
}

.contact-form .cta-button {
    background: #94d2e3; /* Changed to Corporate Blue */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form .cta-button:hover {
    background: #7cbacb; /* Changed to Deeper Corporate Blue */
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 24px 16px;
        margin: 0 16px 30px 16px; 
    }

    .contact-form {
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
    }
}

.pricing-section {
    max-width: 900px;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 20px; 
    row-gap: 0;      
    margin-bottom: 0px;
    gap: 0 20px; 
    margin-top: 30px;
}

.pricing-item {
    background: #fff;
    border: 2px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item h3 {
    color: #94d2e3; /* Changed to Corporate Blue */
    margin-bottom: 10px;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.delivery-info {
    margin-top: 40px;
    padding: 20px;
    background-color: #f2fafc; /* Changed to Light Blue Tint */
    border-radius: 10px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    h2 {
        font-size: 5vw;
    }
}

.how-it-works {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.how-it-works-img {
    width: 100%;       
    height: auto;      
    border-radius: 12px; 
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px; 
    gap: 40px;
}

.step-content {
    flex: 1;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #94d2e3; /* Changed to Corporate Blue */
    line-height: 1;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.step-image {
    flex: 1;
    margin-bottom: 0px;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background-color: #f1f2f6;
    border: 3px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
    }
    .step-content {
        margin-bottom: 10px;
    }
}

/* --- Arcade Hire Section Styling --- */
.arcade-hire-section {
    margin-top: 60px;
    background: #fff;
    border: 2px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 15px;
    padding: 30px 24px;
}

.pricing-section .arcade-hire-section {
    margin-bottom: 20px !important;
    padding-bottom: 24px;
}

.arcade-hire-section h3 {
    color: #94d2e3; /* Changed to Corporate Blue */
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 24px;
}

.hire-intro {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

.arcade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 15px;
}

.arcade-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.arcade-item ul {
    margin: 0 0 12px 0;
    padding: 0;
    list-style-type: none;
}

.arcade-item li {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7cbacb; /* Changed to Accent Blue */
}

.arcade-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #94d2e3; /* Changed to Corporate Blue */
    background: #f1f2f6; 
    margin-bottom: 10px;
}

.arcade-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arcade-pricing {
    background: #f2fafc; /* Changed to Light Blue Tint */
    border-radius: 10px;
    padding: 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.arcade-pricing p {
    font-size: 1.3rem;
    font-weight: bold;
    color: #222;
    margin: 0;
}

@media (max-width: 768px) {
    .arcade-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .arcade-img-wrap {
        height: 260px;
        width: 80%;
    }
    
    .arcade-pricing p {
        font-size: 1.1rem;
    }
}

/* --- Mobile Guest Favor Section Styling --- */
.mobile-favor-section {
    margin-top: 60px;
    margin-bottom: 20px !important; 
    background: #fff; 
    border: 2px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 15px; 
    padding: 40px 24px;
    text-align: center; 
}

.mobile-favor-section h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.favor-intro {
    font-size: 1.2rem;
    color: #444; 
    line-height: 1.6; 
    max-width: 800px;
    margin: 0 auto 35px auto;
}

.favor-image-wrap {
    max-width: 320px;
    height: auto;
    margin: 0 auto 30px auto;
    border-radius: 16px; 
    overflow: hidden; 
    border: 3px solid #94d2e3; /* Changed to Corporate Blue */
    box-shadow: 0 4px 15px rgba(148, 210, 227, 0.15);
    background: #f1f2f6; 
}

.favor-image-wrap img {
    width: 100%; 
    height: 100%; 
    display: block; 
    object-fit: cover; 
}

.favor-features {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 35px auto;
}

.favor-feature-card {
    background: #f2fafc; /* Changed to Light Blue Tint */
    border: 1.5px solid #94d2e3; /* Changed to Corporate Blue */
    border-radius: 12px; 
    padding: 24px 20px; 
    width: 100%;
    transition: transform 0.3s ease; 
    margin-bottom: 10px;
}

.favor-feature-card:hover {
    transform: translateY(-3px); 
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.favor-feature-card h3 {
    color: #94d2e3; /* Changed to Corporate Blue */
    font-size: 1.3rem;
    margin: 0 0 10px 0;
}

.favor-feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.favor-pricing {
    background: #94d2e3; /* Changed to Corporate Blue */
    color: #fff; 
    border-radius: 10px; 
    padding: 15px 30px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(148, 210, 227, 0.2);
    margin-bottom: 10px;
}

.favor-pricing p {
    font-size: 1.3rem;
    font-weight: bold; 
    margin: 0; 
}

.favor-price-tag {
    font-size: 1.6rem;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .favor-features {
        width: 95%; 
    }
    
    .favor-image-wrap {
        max-width: 80%;
    }

    .mobile-favor-section h2 {
        font-size: 1.8rem;
    }
    
    .favor-pricing p {
        font-size: 1.1rem;
    }
    
    .favor-price-tag {
        font-size: 1.3rem;
    }
}