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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

a {
    color: #111;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

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

/* Header */
header {
    padding: 20px 0;
    margin-bottom: 40px;
}

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

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    font-size: 0.95rem;
}

/* Contact me button */
.contact-me-button {
    border-radius: 6px;
    padding: 8px 16px;
    background-color: #1e40af;
    color: #ffffff !important;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-me-button:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
}

/* Main layout */
.hero .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* Profile section */
.profile-section {
    position: sticky;
    top: 30px;
    padding-right: 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-bio p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #333;
}

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

.social-links h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: #1e40af;
    color: white;
    transform: translateY(-2px);
}

/* Main content */
.main-content {
    padding-top: 20px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.highlight {
    font-style: italic;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    transform: rotate(-2deg);
    margin: 0 2px;
}

.newsletter-intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.subscriber-count {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: #555;
}

.newsletter-signup {
    margin-bottom: 30px;
}

.newsletter-signup p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.subscribe-button {
    background-color: #111;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.subscribe-button:hover {
    background-color: #333;
}

.stats {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 40px;
}

/* Brands section */
.brands-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.brands-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.brands-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    overflow-x: visible;
}

.brand-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 30px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Guides section */
.guides-section {
    margin-top: 50px;
}

.guides-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.guides-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-card {
    background-color: #f9f9f9;
    padding: 25px;
    padding-left: 35px;
    border-radius: 8px;
    position: relative;
}

.guide-number {
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #1e40af;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.guide-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.guide-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Contact section */
.contact-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-subtitle {
    color: #555;
    margin-bottom: 30px;
    font-size: 1rem;
}

.form-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.submit-button {
    background-color: #1e40af;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
}

.form-result {
    text-align: center;
    font-weight: 500;
    min-height: 24px;
}

.form-result.success {
    color: #10b981;
}

.form-result.error {
    color: #ef4444;
}

/* Footer */
footer {
    padding: 30px 0;
    margin-top: 80px;
    border-top: 1px solid #eee;
}

footer p {
    font-size: 0.85rem;
    color: #777;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #111;
    transition: all 0.3s ease;
}

/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive styles */
@media (max-width: 768px) {
    /* Header */
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Hamburger menu */
    .hamburger-menu {
        display: block;
    }
    
    /* Navigation menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Main layout */
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    /* Profile section */
    .profile-section {
        position: static;
        margin-bottom: 40px;
    }
    
    /* Brands grid */
    .brands-grid {
        gap: 10px;
    }
    
    .brand-logo img {
        max-height: 25px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .email-input, .subscribe-button {
        width: 100%;
    }
}
