/* --- Variables & Reset --- */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray-dark: #333333;
    /*--font-heading: 'Bodoni Moda', serif; */
    --font-body: 'Inter', sans-serif; /* Clean Sans */
    --transition: all 0.3s ease;
    --nav-height: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; display: block; }

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.p-2{
    padding: 20px;
}
.m-2{
    margin: 20px;
}
/* --- Buttons --- */
.btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--black);
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

/* --- Animation Classes --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- div Spacer ----- */
.spacer {
    height: 100vh;
    background-image: url(../images/IMG_0592.JPEG);
    background-position: center;
    background-size: cover;
}


/* CSS to prevent scrolling when the mobile menu is active */
.no-scroll {
    overflow: hidden;
}

/* --- Responsiveness for Section Title --- */

/* Tablet/Small Desktop (up to 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem; /* Reduce size slightly */
        margin-bottom: 40px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem; /* Significant reduction for small screens */
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
}

/* Very Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    .spacer{
        background-image: url(../images/mobile.jpg);
        background-size: cover;
    }
}
h1{
    
    font-size: 1rem;
    
}
/* 2. Tablet Screens (e.g., 600px and up) */
/* 2. Tablet Screens (e.g., 600px and up) */
@media screen and (min-width: 600px) {
    h1 {
        /* This line likely makes the text too large on initial scaling */
        font-size: max(1.2rem, 2vw) !important; 
        /* ... */
    }
}

/* 3. Desktop Screens (e.g., 1024px and up) */
@media screen and (min-width: 1024px) {
    h1 {
        /* Set a maximum ceiling using min() to prevent it from getting too large on huge monitors. */
        /* It will be 4vw, but never larger than 3.5rem (approx 56px) */
        font-size: min(3.5rem, 4vw); 
        margin-bottom: 1rem;
        padding: 0; /* Remove unnecessary container padding */
    }
}