/* 
  indianaiporn.love - Styles
  Green/emerald color scheme with modern layout
*/

:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #C8E6C9;
    --accent: #FFC107;
    --accent-dark: #FFB300;
    --text: #212121;
    --text-light: #757575;
    --white: #FFFFFF;
    --background: #F5F5F5;
    --section-bg: #FFFFFF;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    font-size: 16px;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.4rem;
    font-weight: 600;
    position: relative;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

ul {
    list-style: none;
}

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

.highlight {
    color: var(--primary);
}

/* Header */
.site-header {
    background-color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}

.logo-icon {
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.nav-button {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
}

.nav-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-button:after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 102;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text);
    margin: 5px auto;
    transition: var(--transition);
}

/* Main Content */
main {
    flex: 1;
    padding-top: 70px; /* Header height */
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    background-image: radial-gradient(circle at top right, rgba(46, 125, 50, 0.06), rgba(46, 125, 50, 0.02));
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.primary-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    transition: var(--transition);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.25);
    color: var(--white);
}

.primary-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: rgba(46, 125, 50, 0.05);
    transform: translateY(-3px);
    color: var(--primary-dark);
}

/* Premium Section */
.premium-section {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Technology Section */
.technology-section {
    padding: 5rem 0;
    background-color: var(--background);
}

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

.content-text {
    max-width: 500px;
}

.tech-features {
    margin-top: 2rem;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.tech-features svg {
    flex-shrink: 0;
}

.tech-features span {
    color: var(--text);
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-section h2:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
}

.cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
}

.cta-block h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Footer */
.site-footer {
    background-color: #0F2517;
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-branding {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-links h4 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
}

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-text {
        max-width: 100%;
    }
    
    .tech-visual {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 7rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 101;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .button-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .cta-block {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
    }
}
