/* style/terms-conditions.css */

:root {
    --primary-color: #FFD700; /* Luxury Gold */
    --secondary-color: #1A1A1A; /* Deep Black */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark-1: #0d0d0d; /* Assuming a dark body background from shared.css */
    --bg-dark-2: #1a1a1a; /* Slightly lighter dark for contrast */
    --border-color: #333333;
}

.page-terms-conditions {
    padding-top: 120px; /* Desktop: Adjust based on header height */
    color: var(--text-light); /* Text color for dark body background */
    background-color: var(--bg-dark-1); /* Ensure content background matches body or provides contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333333 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
}

.page-terms-conditions__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__main-title {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.page-terms-conditions__hero-description {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-terms-conditions__cta-wrapper {
    margin-top: 30px;
    text-align: center;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.page-terms-conditions__cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__cta-button--bottom {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-terms-conditions__content-section {
    padding: 60px 20px;
    background-color: var(--bg-dark-2); /* Slightly lighter dark for content areas */
    border-radius: 8px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions__section-title:first-of-type {
    margin-top: 0;
}

.page-terms-conditions__sub-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-terms-conditions p {
    font-size: 1.05em;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.page-terms-conditions ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-light);
    opacity: 0.9;
}

.page-terms-conditions li {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-terms-conditions__copyright-section {
    background-color: var(--secondary-color);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.page-terms-conditions__copyright-text {
    font-size: 0.9em;
    color: #aaaaaa;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-terms-conditions__main-title {
        font-size: 2.8em;
    }
    .page-terms-conditions__section-title {
        font-size: 2em;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions {
        padding-top: 100px !important; /* Mobile: Adjust based on mobile header height */
        font-size: 15px;
    }
    .page-terms-conditions__hero-section {
        padding: 60px 15px;
    }
    .page-terms-conditions__main-title {
        font-size: 2.2em;
    }
    .page-terms-conditions__hero-description {
        font-size: 1em;
    }
    .page-terms-conditions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-terms-conditions__content-section {
        padding: 40px 15px;
        margin: 20px auto;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
        margin-top: 40px;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
    }
    .page-terms-conditions p,
    .page-terms-conditions li {
        font-size: 0.95em;
    }
    .page-terms-conditions__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-terms-conditions__cta-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .page-terms-conditions__cta-wrapper--bottom {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .page-terms-conditions__copyright-section {
        padding: 20px 15px;
    }
    .page-terms-conditions__copyright-text {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__main-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.2em;
    }
    .page-terms-conditions__hero-description {
        font-size: 0.9em;
    }
}