/* 
 * Method & Mayhem - Minimalist Landing Page
 * Clean, professional design with gradient background and micro-animations
 */

/* ========================
   CSS VARIABLES: Update colors, fonts, and spacing here
   ======================== */
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #000000;
    --text-color: #000000;
    --text-light: #000000;
    --background-start: #ece6de;
    --background-end: #d4c4b0;
    --white: #ffffff;
    --border-color: #E8E8E8;
    --font-family: 'Inter', sans-serif;
    --heading-font: 'Archivo Black', sans-serif;
    --border-radius: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* ========================
   GLOBAL STYLES: Reset and base styles
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: #000000;
    line-height: 1.6;
    /* BACKGROUND GRADIENT: Main page gradient from #ece6de to darker version */
    /*background: linear-gradient(180deg, var(--background-start) 0%, var(--background-end) 100%);*/
    background-attachment: fixed;
    overflow-x: hidden;
}

/* CONTAINER: Main content wrapper - update max-width here */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION: Base section styling */
section {
    padding: var(--section-padding);
    position: relative;
}

/* TYPOGRAPHY: Headings and text styles - update fonts here */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000000;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ========================
   HEADER: Fixed navigation - update logo and menu items here
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

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

/* LOGO: Company logo styling - update logo image here */
.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* NAVIGATION: Main menu styling - update menu items here */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
}

.nav-list a:hover,
.nav-list a.active {
    color: #000000;
    opacity: 0.7;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

/* MOBILE MENU: Hamburger menu for mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #000000;
    transition: var(--transition);
}

/* ========================
   HERO SECTION: Main landing area - update headline and CTA here
   ======================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    padding-top: 120px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* HERO TITLE: Main headline - update text here */
.hero-title {
    color: #000000;
    margin-bottom: 30px;
}

/* HERO SUBTITLE: Supporting text - update description here */
.hero-subtitle {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* HERO BUTTONS: Call-to-action buttons - update button text here */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   BUTTONS: All button styles - update button colors here
   ======================== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #000000;
    color: var(--white);
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #000000;
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================
   SERVICES SECTION: Service offerings - update services here
   ======================== */
.services-section {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #000000;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* SERVICES GRID: Service cards layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* SERVICE CARD: Individual service item - update service content here */
.service-card {    
    /*padding: 40px 30px;    */
    text-align: center;
    transition: var(--transition);
    
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.service-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1em;
    font-family: var(--font-family);
    font-weight: 400;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ========================
   PROCESS SECTION: Company process - update process steps here
   ======================== */
.process-section {
    background: rgba(255, 255, 255, 0.4);
}

.process-steps {
    display: grid;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* PROCESS STEP: Individual process item */
.process-step {
    
    padding: 10px;
    
    transition: var(--transition);
    
}

.process-step:hover {
    transform: translateX(10px);
    border-color: #000000;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8500;
    min-width: 50px;
    flex-shrink: 0;
    font-family: 'Archivo Black', sans-serif;
}

.process-step h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.process-step p {
    margin-bottom: 0;
    margin-left: 0;
}

/* ========================
   ABOUT SECTION: Company information - update about content here
   ======================== */
.about-section {
    background: rgba(255, 255, 255, 0.6);
}

.about-grid {
    display: grid;
    grid-template-columns: 0fr 1fr;
    /*gap: 60px;*/
    align-items: center;
}

/* ABOUT IMAGE: Company photo */
.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-cta {
    margin-top: 30px;
}

/* ========================
   CONTACT SECTION: Contact form and info - update contact details here
   ======================== */
.contact-section {
    background: rgba(255, 255, 255, 0.4);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

/* Contact Grid Container for mobile-friendly layout */
.contact-grid-container {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));    
}

.contact-social-row {
    text-align: center;
    width: 100%;
}

/* CONTACT INFO: Contact details */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    
    
    transition: var(--transition);
    
}

.contact-info-item:hover {
    border-color: #000000;
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 5px;
}

.contact-info-item h3 {
    margin-bottom: 5px;
    color: #000000;
}

.contact-info-item p {
    margin-bottom: 0;
    color: #000000;
}

/* SOCIAL ICONS: Social media links */
.contact-social {
    margin-top: 40px;
    padding: 20px;
    
}

.contact-social-row .contact-social {
    display: block;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    height: 300px; 
    width: 300px; 
    border: 5px solid white;
    border-radius: 100%;
}

.contact-social-row .contact-social h3 {
    text-align: center !important;
    margin-top: 5rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: #333333;
    transform: translateY(-3px);
}

/* ========================
   CONTACT FORM: Form styling - update form fields here
   ======================== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: #000000;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================
   ANIMATIONS: Scroll animations - animation classes
   ======================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.visible {
    opacity: 1;
}

/* ========================
   RESPONSIVE DESIGN: Mobile and tablet styles
   ======================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: left;
    }
    
    .step-number {
        
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .header .container {
        padding: 15px 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 999;
        border-left: 1px solid var(--border-color);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: 80vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .contact-social-row .contact-social {
        padding: 1.5rem 2rem;
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-item i {
        font-size: 1.2rem;
    }
    
    .contact-info-item h3 {
        font-size: 1rem;
    }
    
    .contact-info-item p {
        font-size: 0.9rem;
    }
    
    .contact-social-row .contact-social {
        width: 200px;
        height: 200px;
        padding: 1rem 1.5rem;
    }
    
    .contact-social-row .contact-social h3 {
        margin-top: 3.5rem;
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}