/* Import Daytona font */
@import url('https://fonts.googleapis.com/css2?family=Daytona:wght@400;700&display=swap');

body {
    font-family: 'Daytona', sans-serif;
    background-color: #f4d3c3;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar styling */
.navbar {
    background-color: #ffffff !important;
    border: 3px solid black;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar brand (Logo) */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000 !important;
    border: 3px solid black;
    padding: 10px 20px;
    background: white;
    box-shadow: 4px 4px 0px black;
}

/* Menu container */
.menu-container {
    display: flex;
    gap: 15px;
}

/* Menu buttons */
.menu-button {
    font-weight: 600;
    font-size: 1.2rem;
    padding: 12px 20px;
    text-decoration: none;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    background-color: #ddd;
    color: black;
    text-align: center;
    transition: all 0.3s ease;
}

/* Individual button colors */
.menu-button:nth-child(1) { background-color: #a4e5a0; } /* About Me */
.menu-button:nth-child(2) { background-color: #99ccff; } /* Method */
.menu-button:nth-child(3) { background-color: #e65c5c; } /* Webinar */
.menu-button:nth-child(4) { background-color: #cc66cc; } /* Resources */
.menu-button:nth-child(5) { background-color: #d4af37; } /* Contact */

/* Hover effect */
.menu-button:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 0px black;
}

/* Section Background Colors */
#home { background-color: #f4d3c3; }
#about { background-color: #a4e5a0; }
#method { background-color: #99ccff; }
#webinar { background-color: #e65c5c; }
#resources { background-color: #cc66cc; }
#contact { background-color: #d4af37; }

/* Section Layouts */
.content-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 50px;
    border: 3px solid black;
    box-shadow: 5px 5px 0px black;
}

/* Smooth transition effect */
.content-section {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.content-section.active {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.btn-primary {
    background-color: #99ccff;
    color: #000;
    border: 3px solid black;
    padding: 12px 24px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px black;
}

.btn-primary:hover {
    background-color: #7fb8e6;
    transform: scale(1.05);
    box-shadow: 6px 6px 0px black;
}

/* Navigation Arrows */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: #99ccff;
    border: 3px solid black;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 4px 4px 0px black;
}

.nav-arrow.left { left: 10px; }
.nav-arrow.right { right: 10px; }

.nav-arrow:hover {
    transform: scale(1.1) translateY(-50%);
}

/* Tabs for Method Section */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    font-size: 1rem;
    border: 3px solid black;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 3px 3px 0px black;
}

.tab-button.active {
    background-color: #000;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Resources Section */
.resource-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.resource {
    border: 3px solid black;
    padding: 15px;
    box-shadow: 4px 4px 0px black;
    background-color: white;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60%;
    max-width: 400px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 3px solid black;
    box-shadow: 2px 2px 0px black;
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #000;
    border-top: 3px solid black;
    padding: 15px;
    text-align: center;
}

/* About Me Section - Full View Without Scrolling */
#about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* 100% of the viewport height minus navbar height */
    overflow: hidden; /* Prevent scrolling */
}

/* Main About Card - Fits Perfectly Below Navbar */
.about-card {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 85%; /* Adjusts to fit within the browser without causing scrolling */
    background-color: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px black;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Profile Image */
.profile-img {
    width: 280px;
    height: auto;
    border-radius: 5px;
    box-shadow: 4px 4px 0px black;
}

/* Right Side Content */
.about-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding: 20px;
}

/* About Me Title */
.about-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Text Card */
.about-text-card {
    background-color: white;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    padding: 15px;
    width: 100%;
    font-size: 1.1rem;
}

/* Links Card */
.about-links-card {
    background-color: #99ccff;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

/* Social Icons */
.about-links-card a img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.about-links-card a img:hover {
    transform: scale(1.1);
}


/* Method Section - No Scrolling */
#method {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* Adjust to fit without scrolling */
    overflow: hidden;
}

/* Method Card */
.method-card {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 85%;
    background-color: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px black;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Left Side: Image */
.method-left {
    width: 50%;
    display: flex;
    justify-content: center;
}

.method-image {
    width: 90%;
    height: auto;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 4px 4px 0px black;
}

.method-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
    height: 100%; /* Ensure it takes up full height */
    padding: 20px;
}

.method-title {
    margin: 0;
    padding-bottom: 10px;
}






/* Tab Selector */
.method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-button {
    font-size: 1rem;
    padding: 10px 15px;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Active Tab */
.tab-button.active {
    background-color: black;
    color: white;
}

/* Tab Content */
.method-content {
    flex-grow: 1;
    background-color: white;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    padding: 15px;
    width: 100%;
    height: auto;
    overflow-y: auto;
    min-height: 60vh;
    text-align: left; /* Ensures text aligns left */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* Aligns content to the left */
}

/* Hide all tab content except active */
.tab-content {
    display: none;
    width: 100%;
    height: 100%;
    text-align: left; /* Aligns text to the left */
}

.tab-content.active {
    display: block;
}


/* Webinar Section - No Scrolling */
#webinar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* Ensure no scrolling */
    overflow: hidden;
}

.webinar-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Webinar Card */
.webinar-card {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    height: 85%;
    background-color: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px black;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* PowerPoint Viewer */
.webinar-viewer {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ppt-viewer {
    width: 100%;
    height: 100%;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    background-color: #ddd; /* Placeholder if PowerPoint can't be embedded */
}

/* Download Button */
.webinar-download {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 3px solid black;
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 4px 4px 0px black;
    transition: all 0.3s ease-in-out;
}

.download-button img {
    width: 20px;
    height: 20px;
}

.download-button:hover {
    background-color: black;
    color: white;
}



/* Resources Section - No Scrolling */
#resources {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* Ensures content fits the viewport */
    overflow: hidden;
}

/* Main White Card */
.resources-card {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    height: 85%;
    background-color: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px black;
    padding: 20px;
    align-items: center;
    justify-content: space-between; 
    position: relative;
    min-height: 200px;
}

/* Resources Title */
.resources-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px; /* More spacing from title */
}

/* Grid Layout for Resource Categories */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center; /* Ensures the grid stays centered */
}

/* Individual Resource Cards */
.resource-item {
    background-color: white;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    padding: 20px;
    text-align: center;
}

/* Download Buttons */
.resource-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px; /* Adds spacing above buttons */
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    border: 3px solid black;
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 4px 4px 0px black;
    transition: all 0.3s ease-in-out;
}

.download-button img {
    width: 20px;
    height: 20px;
    filter: invert(1); /* Makes icon white */
}

.download-button:hover {
    background-color: white;
    color: black;
}



/* Import Daytona font */
@import url('https://fonts.googleapis.com/css2?family=Daytona:wght@400;700&display=swap');

body {
    font-family: 'Daytona', sans-serif;
    background-color: #f4d3c3;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Navbar styling */
.navbar {
    background-color: #ffffff !important;
    border: 3px solid black;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

/* Navbar brand (Logo) */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000 !important;
    border: 3px solid black;
    padding: 10px 20px;
    background: white;
    box-shadow: 4px 4px 0px black;
}

/* Menu container */
.menu-container {
    display: flex;
    gap: 15px;
}

/* Menu buttons */
.menu-button {
    font-weight: 600;
    font-size: 1.2rem;
    padding: 12px 20px;
    text-decoration: none;
    border: 3px solid black;
    box-shadow: 4px 4px 0px black;
    background-color: #ddd;
    color: black;
    text-align: center;
    transition: all 0.3s ease;
}

/* Individual button colors */
.menu-button:nth-child(1) { background-color: #a4e5a0; } /* About Me */
.menu-button:nth-child(2) { background-color: #99ccff; } /* Method */
.menu-button:nth-child(3) { background-color: #e65c5c; } /* Webinar */
.menu-button:nth-child(4) { background-color: #cc66cc; } /* Resources */
.menu-button:nth-child(5) { background-color: #d4af37; } /* Contact */

/* Hover effect */
.menu-button:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 0px black;
}

/* Responsive Navbar */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .menu-container {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .menu-button {
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-container.active {
        display: flex;
    }
}

/* Responsive Sections */
.content-section {
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 50px;
    border: 3px solid black;
    box-shadow: 5px 5px 0px black;
    overflow: auto;
}

@media screen and (max-width: 768px) {
    .content-section {
        padding: 30px;
        overflow-y: auto;
    }
}

/* Responsive Layouts */
.about-card, .method-card, .resources-card, .webinar-card {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    background-color: white;
    border: 3px solid black;
    box-shadow: 6px 6px 0px black;
    padding: 20px;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.about-left, .about-right, .method-left, .method-right {
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .about-card, .method-card {
        flex-direction: row;
    }
    .about-left, .about-right, .method-left, .method-right {
        width: 50%;
    }
}

/* Prevent Overflow Issues on Small Screens */
.method-card, .resources-card {
    max-width: 100%;
}

.method-content, .resources-grid {
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Webinar Section */
.webinar-viewer iframe {
    width: 100%;
    height: 300px;
}

@media screen and (min-width: 1024px) {
    .webinar-viewer iframe {
        height: 450px;
    }
}

/* Responsive Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive Contact Form */
form {
    width: 90%;
    max-width: 400px;
}

/* Responsive Navigation Arrows */
@media screen and (max-width: 768px) {
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

