/* 
 * JacobLeeXXX Website Styles
 * A modern, responsive design with teal and gold color scheme
 */

/* --------------- Base Styles --------------- */
:root {
    /* Main colors */
    --primary: #00A0B0;         /* Teal blue */
    --primary-dark: #007A8C;    /* Darker teal */
    --secondary: #E9B44C;       /* Golden yellow */
    --secondary-dark: #D69E31;  /* Darker gold */
    --dark: #222831;            /* Near black */
    --light: #F5F5F5;           /* Off white */
    --grey: #9DA3B3;            /* Medium grey */
    --grey-light: #E0E0E0;      /* Light grey */
    --grey-dark: #4A4A4A;       /* Dark grey */
    --accent: #ED553B;          /* Coral accent */
    
    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 999px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--space-md);
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--space-md);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    margin: var(--space-sm) auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--grey-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* --------------- Buttons --------------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

.btn-light {
    background-color: var(--light);
    color: var(--dark);
    border: 1px solid var(--grey-light);
}

.btn-light:hover {
    background-color: var(--grey-light);
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-nav {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background-color: var(--secondary-dark);
    color: var(--dark);
}

/* --------------- Header --------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.header.scrolled .logo-svg {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    position: relative;
}

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

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

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

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* --------------- Hero Section --------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--light);
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--light);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../overlay-pattern.png');
    opacity: 0.1;
}

/* --------------- Premium Section --------------- */
.premium {
    padding: var(--space-xxl) 0;
    background-color: white;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.premium-card {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.premium-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.premium-card h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.premium-card p {
    color: var(--grey-dark);
    margin-bottom: 0;
}

/* --------------- About Section --------------- */
.about {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
}

.about-content {
    display: flex;
    gap: var(--space-xl);
}

.about-text {
    flex: 3;
}

.about-stats {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-item {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--grey-dark);
    font-weight: 500;
}

/* --------------- Gallery Section --------------- */
.gallery {
    padding: var(--space-xxl) 0;
    background-color: var(--dark);
    color: var(--light);
}

.gallery .section-header h2,
.gallery .section-header p {
    color: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    box-shadow: var(--shadow-md);
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(-10px);
}

.gallery-content h3 {
    color: var(--light);
    margin-bottom: var(--space-xs);
}

.gallery-content p {
    color: var(--grey-light);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
}

.gallery .btn-outline {
    color: var(--light);
    border-color: var(--light);
}

.gallery .btn-outline:hover {
    background-color: var(--light);
    color: var(--dark);
}

/* --------------- Entertainment Section --------------- */
.entertainment {
    padding: var(--space-xxl) 0;
    background-color: white;
}

.entertainment-content {
    display: flex;
    justify-content: center;
}

.entertainment-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    width: 100%;
}

.link-group {
    margin-bottom: var(--space-lg);
}

.link-group h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--grey-light);
}

.link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.link-list li {
    margin-bottom: var(--space-xs);
    position: relative;
    padding-left: 1.5rem;
}

.link-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.link-list a {
    color: var(--grey-dark);
    transition: all 0.3s ease;
}

.link-list a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --------------- Contact Section --------------- */
.contact {
    padding: var(--space-xxl) 0;
    background-color: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.contact-text p {
    color: var(--grey-dark);
    margin-bottom: 0;
}

.contact-form {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 160, 176, 0.2);
}

/* --------------- CTA Section --------------- */
.cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: var(--space-sm);
}

.cta p {
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --------------- Footer --------------- */
.footer {
    background-color: var(--dark);
    color: var(--grey-light);
    padding-top: var(--space-xl);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-favicon {
    margin-left: var(--space-md);
}

.footer-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--grey-light);
    font-weight: 500;
}

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

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-middle h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.footer-middle ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-middle li {
    margin-bottom: var(--space-xs);
}

.footer-middle a {
    color: var(--grey);
    transition: all 0.3s ease;
}

.footer-middle a:hover {
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: var(--grey);
    font-size: 0.8rem;
}

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

/* --------------- Media Queries --------------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-stats {
        margin-top: var(--space-md);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--light);
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-md);
        opacity: 0;
    }
    
    .main-nav.active {
        height: auto;
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-top, 
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .premium-grid,
    .gallery-grid,
    .entertainment-links {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--radius-sm);
    }
}
