/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: #333;
    background-color: #FBFBF7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Giaza', serif;
    line-height: 1.2;
}

h1 {
    font-size: 72px;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: -0.05em;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #0A4697;
    transition: all 0.3s ease;
}

a:hover {
    color: #F3471F;
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background-color: rgba(10, 70, 151, 0.1);
    backdrop-filter: blur(5px);
}

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

.logo img {
    max-height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #F3471F;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    color: white;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: calc(100vh - 80px);
    padding: 2rem 0;
    max-width: 42rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 42rem;
}

.hero-actions {
    margin-top: 1rem;
}

.countdown-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-date {
    text-align: center;
    margin-top: 1rem;
}

/* Countdown Styles */
/* .countdown-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(5px);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    min-width: 100px;
    text-align: center;
}

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-date {
    margin-top: 20px;
    font-size: 18px;
} */

/* Planning Section */
.planning {
    padding: 120px 0;
    background-color: var(--blanc);
    min-height: 800px;
}

.planning-header {
    text-align: center;
    margin-bottom: 80px;
}

.planning-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    min-height: 600px;
    position: relative;
}

.planning-actions {
    text-align: center;
    margin-top: 30px;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.planning-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.planning-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.planning-icon {
    background-color: #0A4697;
    color: white;
    font-size: 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planning-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.planning-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Gallery Section */
.gallery {
    text-align: center;
    background-color: #FDE7E3;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-preview-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-preview-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

/* Vendors Section */
.vendors {
    text-align: center;
}

.vendors-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.vendor-category {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vendor-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vendor-category i {
    font-size: 40px;
    color: #0A4697;
    margin-bottom: 20px;
}

/* Budget Section */
.budget {
    text-align: center;
}

.budget-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.budget-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.budget-amount {
    font-size: 36px;
    font-weight: 600;
    color: #0A4697;
    margin-top: 10px;
}

.budget-categories {
    margin-top: 50px;
}

.budget-category {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.category-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.category-header h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.progress {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #0A4697;
    border-radius: 5px;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 40px auto 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    color: #0A4697;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

/* Tutorials Page */
.tutorials-hero {
    padding: 100px 0 60px;
    text-align: center;
    background-color: var(--blanc);
}

.tutorials-content {
    padding: 60px 0;
}

.tutorial-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--blanc);
    box-shadow: 0 10px 30px rgba(10, 70, 151, 0.1);
}

.tutorial-video-container {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tutorial-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.tutorial-info {
    padding: 20px 0;
}

.tutorial-info h2 {
    margin-bottom: 15px;
    color: var(--bolden);
}

.journal-prompt {
    margin-top: 30px;
    padding: 30px;
    background-color: rgba(243, 71, 31, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

.journal-prompt h3 {
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 600;
}

.journal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journal-question {
    margin-bottom: 15px;
}

.journal-question label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--bolden);
}

.journal-question textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(10, 70, 151, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.journal-question textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.journal-question input[type="time"],
.journal-question select {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    border: 1px solid rgba(10, 70, 151, 0.2);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.journal-question input[type="time"]:focus,
.journal-question select:focus {
    border-color: var(--accent);
    outline: none;
}

.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
}

.tool-reference {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(10, 70, 151, 0.05);
    border-radius: 8px;
}

.tool-reference p {
    font-size: 0.9rem;
    color: var(--bolden);
}

.tool-reference a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tool-reference a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .tutorial-item {
        flex-direction: row;
        gap: 40px;
    }
    
    .tutorial-video-container {
        flex: 1;
        margin-bottom: 0;
    }
    
    .tutorial-info {
        flex: 1;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .tutorial-item {
        padding: 30px 20px;
    }
    
    .journal-prompt {
        padding: 20px;
    }
}

/* Footer */
footer {
    background-color: #0A4697;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 20px;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: #F3471F;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F3471F;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Styles & Mobile Navigation
-------------------------------------------------- */

.mobile-menu-icon {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1001; /* Ensure it's above other header content */
}

.mobile-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #0A4697;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-icon span:nth-child(1) {
    top: 0px;
}

.mobile-menu-icon span:nth-child(2) {
    top: 9px;
}

.mobile-menu-icon span:nth-child(3) {
    top: 18px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(251, 251, 247, 0.98);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-close-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #0A4697;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    text-align: center;
}

.mobile-nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    font-family: 'Giaza', serif;
    font-size: 36px;
    color: #0A4697;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #F3471F;
}

.mobile-nav-divider {
    height: 1px;
    width: 80px;
    background-color: #F3471F;
    margin: 20px auto;
}

/* Tablet and smaller desktops */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .header-container {
        padding: 0 30px;
    }

    h1, .hero-title {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .rebel-manifesto-container {
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .coordinators-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 30px;
    }
}

/* Mobile phones */
@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .header-container {
        padding: 0 20px;
    }

    .altare-logo {
        max-width: 150px; /* Adjust logo size for mobile */
    }

    h1, .hero-title {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .rebel-manifesto-image {
        width: 90%;
    }

    .add-ons-content {
        flex-direction: column;
    }

    .add-ons-image, .add-ons-text {
        flex: 1 1 100%;
    }

    .contact-form-container {
        padding: 30px;
    }
}

