 @import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Poppins:wght@400;500;700&display=swap');

:root {
    --primary-color: #ffc700; /* Gold */
    --secondary-color: #d62828; /* Red */
    --dark-blue: #003049; /* Deep Sea Blue */
    --light-blue: #f7f9fa; /* Off-white */
    --text-color: #333;
    --font-title: 'Luckiest Guy', cursive;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-blue);
    color: var(--text-color);
    overflow-x: hidden;
}

/* General Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #555;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--dark-blue);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--dark-blue);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Scroll Animations */
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 48, 73, 0.95);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-title);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}

.nav-logo i {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-menu .bar {
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Sections */
#hero-privacy, #hero-terms, #hero-thanks {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('image/crew.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 5rem;
    letter-spacing: 3px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 20px 0 40px;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.accordion-container {
    margin-top: 20px;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    background: var(--dark-blue);
    color: #fff;
    padding: 20px;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #002b40;
}

.accordion-header i:first-child {
    margin-right: 15px;
}

.accordion-header i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    padding: 0 20px;
}

.accordion-body.active {
    max-height: 200px;
    padding: 20px;
}

.accordion-body p {
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 15px;
    width: 25px;
}

.info-item a, .info-item span {
    color: var(--text-color);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Stats Container (Thank You Page) */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.counter {
    display: block;
    font-size: 3rem;
    font-family: var(--font-title);
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 2rem;
}

.footer-logo a {
    color: #fff;
    text-decoration: none;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-links h4,
.footer-contacts h4 {
    font-family: var(--font-title);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contacts .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contacts .info-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-contacts a {
    color: #ddd;
    text-decoration: none;
}

.footer-contacts a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stats-container {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}