:root {
    --dark-red: #990100;
    --bright-red: #ee2d29;
    --light-gray: #c8c7c5;
    --white-pose: #fbfbfb;
    --black-pose: #000000;
}

@font-face {
    font-family: bodoniComp;
    src: url(/fonts/Bodoni\ Z37\ M\ Compressed\ Bold.otf);
}

@font-face {
    font-family: harold26;
    src: url(/fonts/harold26.otf);
}

@font-face {
    font-family: higuenSerif;
    src: url(/fonts/Higuen\ Serif.otf);
}

/* Base responsive settings */
* {
    box-sizing: border-box;
}

body {
    font-family: higuenSerif;
    font-size: clamp(14px, 4vw, 18px); /* Responsive base font size */
    line-height: 1.5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

nav {
    background-color: var(--black-pose);
    padding: 0.75rem 1rem;
}

/* Responsive navbar */
.navbar {
    min-height: 60px;
}

.navbar-toggler {
    padding: 8px 12px;
}

/* Responsive container for all pages */
.container-responsive {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive headings */
h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
}

h2 {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
}

h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 80%;
    }
}



/* Mobile First (default styles) */
/* Already optimized for mobile */

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Adjustments for tablets */
}

/* Desktop Styles */
@media (min-width: 1024px) {
    /* Adjustments for desktop */
}

/* Large Desktop */
@media (min-width: 1440px) {
    /* Adjustments for large screens */
}





/* :root {
    --dark-red: #990100;
    --bright-red: #ee2d29;
    --light-gray: #c8c7c5;
    --white-pose: #fbfbfb;
    --black-pose: #000000;
}

@font-face {
    font-family: bodoniComp;
    src: url(/fonts/Bodoni\ Z37\ M\ Compressed\ Bold.otf);
}

@font-face {
    font-family: harold26;
    src: url(/fonts/harold26.otf);
}

@font-face {
    font-family: higuenSerif;
    src: url(/fonts/Higuen\ Serif.otf);
}

body {
    font-family: higuenSerif;
}

nav {
    background-color: var(--black-pose);
} */




