/* styles.css */

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    background: #00787E; /* teal background */
    color: white;
    padding: 10px 20px; /* Spacing around the header */
    text-align: center;
	font-size: 12px;
	margin-bottom: 0;
}

/* Navigation styling */
nav ul {
    list-style: none; /* Remove bullets */
    padding: 0;
	font-size: 12px;
}

nav ul li {
    display: inline; /* Inline items */
    margin: 0 15px; /* Spacing between items */
	font-size: 12px;
}

nav ul li a {
    color: white;
    text-decoration: none; /* Remove underline */
	font-size: 12px;
}

/* Main content styling */
main {
    padding: 20px;
    max-width: 1200px; /* Limit the width */
    margin: auto; /* Center the main content */
    background: white; /* White background for content */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Section styling */
section {
    margin-bottom: 20px; /* Spacing between sections */
}
 
h2 {
    color: #00787E; /* Match header color */
}

/* Change Meet Button Styling */
.change-meet-btn {
    padding: 6px 18px !important;
    cursor: pointer !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.2s ease !important;
}

.change-meet-btn:hover {
    background-color: white !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-1px) !important;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px 0;
    background: #00787E;
    color: white;
    position: relative; /* Allow for positioning */
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Desktop - ensure nav is visible */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    nav {
        display: block !important;
    }
}

/* Responsive Styles - Mobile */
@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    /* Hide nav by default on mobile */
    nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #333;
        z-index: 999;
    }
    
    nav.active {
        display: block !important;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    header {
        position: relative;
    }

    main {
        padding: 10px; /* Less padding on smaller screens */
    }
    
    /* Add extra padding to footer on mobile to prevent cutoff */
    footer {
        padding-bottom: 40px !important;
    }

    header h1 {
        font-size: 1.5em; /* Smaller header font */
    }
}