/* style.css - Celestial White Glove Services */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E8C1;
    --gold-dark: #B8860B;
    --black: #000000;
    --black-light: #111111;
    --white: #FFFFFF;
    --gray-light: #f5f5f5;
    --gray: #777777;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-title h2.gold-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-fill-color: unset;
    padding: 15px 40px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.section-title p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    max-width: 700px;
    margin: 25px auto 0;
    font-weight: 300;
}

.content-section {
    background-color: var(--black-light);
    padding: 60px 0;
    min-height: 70vh;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.content-title {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.content-subtitle {
    font-size: 1.4rem;
    color: var(--gold-light);
    margin: 25px 0 15px;
    font-weight: 600;
}

.content-text {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.content-text strong {
    color: var(--white);
    font-weight: 600;
}

.content-list {
    margin: 20px 0 20px 40px;
    list-style-type: decimal;
}

.content-list li {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.7;
}

.bullet-list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
}

.bullet-list li {
    margin-bottom: 10px;
    color: #ccc;
}

.date-info {
    text-align: center;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.divider {
    text-align: center;
    margin: 40px auto;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 8px;
    opacity: 0.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    left: 0;
}

.btn:hover {
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:before {
    background: var(--gold);
}

.btn-outline:hover {
    color: var(--black);
}

.section-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lobster', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section for Policy Pages */
.hero-policy {
    min-height: 40vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.8) 100%);
}

.hero-policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-policy h1 {
    font-family: 'Lobster', cursive;
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-policy h1 span {
    color: var(--white);
    font-weight: 400;
    display: block;
    font-size: 3.5rem;
    margin-top: 8px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 30px auto;
}

.hero-policy-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--white);
    font-style: italic;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--gold);
    width: 18px;
    font-size: 0.8rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-info i {
    color: var(--gold);
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin-bottom: 25px;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .hero-policy h1 {
        font-size: 2.5rem;
    }
    
    .hero-policy h1 span {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero-policy h1 {
        font-size: 2rem;
    }
    
    .hero-policy h1 span {
        font-size: 2.3rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .content-list, .bullet-list {
        margin-left: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}