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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #29b6f6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4fc3f7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4fc3f7;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-left: 10px;
    align-self: flex-end;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .nav-logo .tagline {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(79, 195, 247, 0.2));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #4fc3f7;
    margin-bottom: 1.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4fc3f7;
    border: 2px solid #4fc3f7;
}

.btn-secondary:hover {
    background: #4fc3f7;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #4fc3f7;
    border-bottom: 2px solid #4fc3f7;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #4fc3f7;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.4);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.1);
}

.about-card h3 {
    color: #4fc3f7;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-bg {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.7);
}

.about-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

.stat h4 {
    color: #4fc3f7;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Podcast Section */
.podcast {
    background: #0a0a0a;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.podcast-description {
    margin-bottom: 2rem;
}

.podcast-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4fc3f7;
}

.feature h4 {
    color: #4fc3f7;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
}

.podcast-platforms h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-btn:hover {
    background: #4fc3f7;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.podcast-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.podcast-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.podcast-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-visual:hover .podcast-overlay {
    opacity: 1;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Creative Section */
.creative {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

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

.creative-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.1);
}

.creative-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.creative-card h3 {
    color: #4fc3f7;
    margin-bottom: 1rem;
}

.creative-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Gaspiracy AI Section */
.gaspiracy-ai {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-description {
    margin-bottom: 2rem;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #4fc3f7;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.ai-feature h4 {
    color: #4fc3f7;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ai-feature p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0;
}

.phone-card {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.2);
}

.phone-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.phone-card h3 {
    color: #4fc3f7;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.phone-number {
    margin-bottom: 1.5rem;
}

.phone-number a {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.phone-number a:hover {
    color: #4fc3f7;
}

.phone-card p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.call-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.call-features span {
    color: #4fc3f7;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Presence Section */
.presence {
    background: #0a0a0a;
}

.presence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.presence-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.presence-stat {
    text-align: center;
    flex: 1;
}

.presence-stat h4 {
    color: #4fc3f7;
    margin-bottom: 0.5rem;
}

.presence-stat p {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.presence-stat span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.presence-visual {
    border-radius: 20px;
    overflow: hidden;
}

.presence-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #4fc3f7;
}

.contact-method h4 {
    color: #4fc3f7;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #b0b0b0;
    margin: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #4fc3f7;
    color: #0a0a0a;
    transform: translateX(10px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-text p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4fc3f7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .podcast-content,
    .presence-content,
    .contact-content,
    .ai-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .podcast-features {
        grid-template-columns: 1fr;
    }
    
    .presence-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .creative-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-buttons {
        flex-direction: column;
    }
    
    .social-links {
        gap: 0.5rem;
    }
}

