/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #f4a735;
    --gold-dark: #b8941f;
    --gold-light: #e5c866;
    --black: #000000;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #333333;
    --text-dark: #2c2c2c;
    --navbar-height: 118px; /* Logo height (70px) + padding top/bottom (48px) */
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
}

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

/* Common Button Styles */
.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 167, 53, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 167, 53, 0.4);
}

/* Common Section Styles */
.section-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    text-align: center;
    color: var(--gold);
    margin: 0 auto 1rem auto;
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gold);
    transition: width 0.8s ease;
}

.section-title.revealed::after {
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Global Image Styles - Ensure all images have proper constraints */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure images in containers maintain aspect ratio and don't break layout */
/* Exclude logo images which have their own specific styles */
img[src*="storage"]:not(.hero-logo):not(.footer-logo-img),
img[src*="image"]:not(.hero-logo):not(.footer-logo-img) {
    min-width: 100px;
    min-height: 100px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
