/* Base Styles */
:root {
    --primary-color: #0A2342;
    --accent-color: #D5A021;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --dark-text: #333333;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

section {
    padding: 5rem 0;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links a {
    margin-left: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-text h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-height: 500px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(213, 160, 33, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(10, 35, 66, 0.3);
}

/* Social Proof Section */
.social-proof {
    background-color: var(--white);
    padding: 3rem 0;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logos-container img {
    max-width: 100%;
    height: auto;
    /* Removed grayscale and opacity for full color */
    transition: var(--transition);
}

/* Removed hover effect for social proof images */

/* Story Section */
.story {
    background-color: var(--light-gray);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Keynotes Section */
.keynotes {
    background-color: var(--white);
}

.keynotes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.keynote-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.keynote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.keynote-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.keynote-card p {
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2, .cta p {
    color: var(--white);
}

.cta-image {
    margin-top: 3rem;
    text-align: center;
}

.cta-image img {
    max-height: 400px;
    margin: 0 auto;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    margin: 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content, .story-content {
        flex-direction: column-reverse;
    }
    
    .hero-image, .story-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav-links a {
        margin: 0 0.5rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .keynotes-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* Nichole in Action Section */
.action-section {
    background-color: var(--light-gray);
    text-align: center;
}

.action-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted minmax for more uniform sizing */
    gap: 1rem; /* Reduced gap for tighter fit */
    margin-top: 2rem;
    justify-content: center; /* Center items in the grid */
}

.action-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.action-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.action-photo img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: contain; /* Use contain to prevent cropping */
    background-color: #fff; /* Add a white background for contain */
}

/* Books Section */
.books-section {
    background-color: var(--white);
    text-align: center;
}

.books-container {
    display: flex; /* Use flexbox for single row */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center items */
    gap: 1rem; /* Adjusted gap for tighter fit */
    margin-top: 2rem;
}

.book-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1rem; /* Reduced padding */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px; /* Fixed width for uniformity */
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.book-image {
    margin-bottom: 1rem; /* Reduced margin */
}

.book-image img {
    width: 120px; /* Smaller width for uniformity */
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem; /* Smaller font size */
}

.book-info p {
    margin-bottom: 1rem; /* Reduced margin */
    color: var(--dark-text);
    opacity: 0.8;
    font-size: 0.9rem; /* Smaller font size */
}

.book-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.2rem; /* Smaller padding */
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem; /* Smaller font size */
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(213, 160, 33, 0.3);
}

.book-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(213, 160, 33, 0.4);
}

/* Videos Section */
.videos-section {
    background-color: var(--light-gray);
    text-align: center;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-embed {
    width: 100%;
    height: 200px;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Social Media Section */
.social-section {
    background-color: var(--white);
}

.social-feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.instagram-feed, .linkedin-feed {
    text-align: center;
}

.instagram-feed h3, .linkedin-feed h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.social-post {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-post img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.social-post p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.social-post .post-date {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0;
}

/* Loading Message */
.loading-message {
    text-align: center;
    padding: 2rem;
    color: var(--dark-text);
    opacity: 0.6;
    font-style: italic;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-links a {
        margin: 0;
        font-size: 0.8rem;
    }
    
    .books-container {
        flex-direction: column; /* Stack books on mobile */
        align-items: center;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
    }
    
    .social-feeds {
        grid-template-columns: 1fr;
    }
    
    .action-gallery {
        grid-template-columns: 1fr;
    }
    
    .keynotes-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .book-image img {
        width: 100px; /* Even smaller for very small screens */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
}


/* Terms and Contact Page Styles */
.terms-section, .contact-section {
    padding: 8rem 0 5rem;
    background-color: var(--white);
}

.terms-content, .contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h1, .contact-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.terms-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--primary-color);
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(213, 160, 33, 0.3);
}

.submit-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(213, 160, 33, 0.4);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-section, .contact-section {
        padding: 6rem 0 3rem;
    }
}


/* Additional Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar {
        position: relative;
    }
    
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 1000;
    }
    
    .nav-links.mobile-active a {
        margin: 0.5rem 0;
        padding: 0.5rem;
        text-align: center;
        border-bottom: 1px solid var(--light-gray);
    }
}

/* Enhanced Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Improved Button Hover Effects */
.cta-button, .book-button, .submit-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before, .book-button::before, .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before, .book-button:hover::before, .submit-button:hover::before {
    left: 100%;
}

/* Enhanced Grid Responsiveness */
@media (max-width: 992px) {
    .books-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .books-container {
        flex-direction: column; /* Stack books on mobile */
        align-items: center;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
    }
    
    .social-feeds {
        grid-template-columns: 1fr;
    }
    
    .action-gallery {
        grid-template-columns: 1fr;
    }
    
    .keynotes-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .book-image img {
        width: 100px; /* Even smaller for very small screens */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.4rem;
    }
}


