/* subpage-style.css */

/* Apply box-sizing globally to include padding and borders in the width/height */
*, *::before, *::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'SweetieBeastie';
    src: url('/Users/joaoleal/Library/Fonts/Sweetie Besstie.ttf') format('truetype'); /* Replace with the correct path to your font */
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif; /* Thin sans-serif font for text */
    background-color: #f7f7f7; /* Light background color */
    color: #001c00; /* Dark green text color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Include Playfair Display font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* Include Open Sans font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
   
    backdrop-filter: blur(5px); /* Slight blur effect */
    z-index: 1000;
    height: 80px;
    width: 100vw;
    max-width: 1300px;
    display: flex;
    align-items: center;
    padding: 18px 30px;
    margin: 0 auto; /* Center align the header */
}

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

header h1 {
    font-family: 'SweetieBeastie', sans-serif; 
    font-size: 2.5em;
    margin: 0;
    flex: 1;
}

header a {
    text-decoration: none;
}

header button {
    background: none;
    border: none;
    color: #001c00;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'Open Sans', sans-serif;
}

header button:hover {
    color: #004d00;
}


.logo {
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color from parent (or set your own) */
    font-family: 'SweetieBeastie', sans-serif;
}

.logo:hover {
    color: inherit; /* Maintain the text color on hover */
}


.content {
    margin-top: 80px;
    padding: 20px;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin: 0.5em 0;
}

.content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-style: italic;
    margin: 0.5em 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content h2 {
        font-size: 2em;
    }

    .content h3 {
        font-size: 0.5em;
    }
}

.header-content h1 {
    font-size: 1.1rem; /* Adjusted font size for medium screens */
}

header button {
    background: none;
    border: none;
    color: #001c00;
    padding: 5px 5px;
    font-size: 0.7em;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 480px) {
    .content h2 {
        font-size: 1.7em;
    }

    .content h3 {
        font-size: 1.2em;
    }
}
