:root {
    --bg-primary: #FDFCF8;
    --bg-secondary: #F7F5F0;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --accent-orange: #F69825;
    --accent-orange-hover: #d66a4f;
    --white: #FFFFFF;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
}

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

.btn-dark {
    background-color: #1A1A1A;
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 122, 93, 0.3);
}

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

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



/* Responsive */
@media (min-width: 768px) {

    /* Navbar */
    header {
        padding: 24px 0;
    }

    header .logo {
        display: inline-block;
    }

    .mobile-only {
        display: none !important;
    }

    .top-nav {
        display: inline-block;
        float: right;
    }

    .nav-links {
        display: flex;
        gap: 32px;
    }

    .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-secondary);
    }

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

    .auth-buttons {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .mobile-menu-btn {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0 80px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 64px;
        margin-bottom: 24px;
        color: var(--text-primary);
    }

    .hero-content h1 span {
        color: var(--accent-orange);
        font-style: italic;
    }

    .hero-content p {
        font-size: 18px;
        color: var(--text-secondary);
        margin-bottom: 32px;
        max-width: 480px;
    }

    .bento-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 200px);
        gap: 16px;
    }

    .bento-item {
        position: relative;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
    }

    .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .bento-item:first-child {
        grid-row: span 2;
    }

    /* Events Section */
    .events-section {
        padding: 80px 0;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .events-list {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 24px;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .events-list::-webkit-scrollbar {
        display: none;
    }

    .event-card {
        width: 280px;
        height: auto;
        margin: 15px 15px;
        background: var(--white);
        border-radius: var(--border-radius-md);
        overflow: hidden;
        /* box-shadow: var(--shadow-soft); */
        transition: transform 0.3s ease;
    }

    .event-card:hover {
        transform: translateY(-5px);
    }

    .event-image {
        height: 180px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .event-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* border-radius: var(--border-radius-md); */
    }

    .event-details {
        padding: 16px 0;
    }

    .event-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .event-date {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .event-buttons {
        display: flex;
        gap: 8px;
        padding: 15px 15px;
    }

    .event-card a {
        font-size: 12px !important;
    }

    /* Auth Pages */
    .auth-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bg-primary);
        padding: 24px;
    }

    .auth-card {
        background: var(--white);
        padding: 48px;
        border-radius: var(--border-radius-lg);
        width: 100%;
        max-width: 780px;
        box-shadow: var(--shadow-soft);
        margin: 0 auto;
    }

    .auth-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .auth-header h2 {
        font-size: 32px;
        margin-bottom: 8px;
    }

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

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 14px;
    }

    .form-input {
        width: 100%;
        padding: 14px;
        border: 1px solid #e0e0e0;
        border-radius: var(--border-radius-sm);
        font-family: var(--font-body);
        font-size: 16px;
        transition: border-color 0.3s;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--text-primary);
    }

    .form-actions {
        margin-top: 32px;
    }

    .btn-block {
        width: 100%;
    }

    .text-center {
        text-align: center;
    }

    .auth-footer {
        margin-top: 24px;
        font-size: 14px;
        text-align: center;
        color: var(--text-secondary);
    }

    .auth-footer a {
        color: var(--text-primary);
        font-weight: 600;
        text-decoration: underline;
    }

    /* Footer style from image */
    footer {
        background-color: rgb(23, 23, 23);
        padding: 60px 40px;
        border-top: 1px solid #eee;
        margin: 0 auto;
        width: 100%;
        color: var(--white);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand p {
        color: rgb(219, 219, 219);
        margin-top: 16px;
        font-size: 14px;
        max-width: 300px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col p {
        color: rgb(219, 219, 219);
        margin-bottom: 12px;
        font-size: 14px;
    }

    .footer-col a {
        color: rgb(219, 219, 219);
        margin-bottom: 12px;
        font-size: 14px;
    }

    .footer-col a:hover {
        color: var(--accent-orange);
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 14px;
        color: rgb(219, 219, 219);
    }

    .footer-col ul li a:hover {
        color: var(--accent-orange);
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
        width: 100% !important;
        box-sizing: content-box;
        margin: 0 !important;
    }

    header {
        padding: 16px 0;
        position: relative;
    }

    .container {
        padding: 0 16px;
        width: 100%;
        margin: 0 auto;
    }

    /* Mobile Nav */
    .nav-links {
        display:none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
        gap: 16px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links ul {
        list-style: none;
        text-align: center;
    }

    .nav-links ul li {
        margin-bottom: 16px;
    }

    .logo {
        display: inline-block;
    }

    .top-nav {
        display: inline-block;
        float: right;
    }

    .mobile-menu-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-primary);
        cursor: pointer;
    }

    .desktop-auth-buttons {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 24px 0 48px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        margin: 0 auto 24px;
        font-size: 12px;
    }

    .hero-content div {
        /* Button Container */
        justify-content: center;
    }

    .bento-grid {
        display: none;
    }

    /* Events */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Events Section */
    .events-section {
        padding: 20px 0;
        text-align: center;
    }

    .section-title {
        font-size: 24px !important;
    }

    .events-section p {
        font-size: 12px !important;
    }

    .events-list {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 24px;
        margin-top: 30px;
    }

    .events-list::-webkit-scrollbar {
        display: none;
    }

    .event-card {
        width: 600px !important;
        height: auto;
        background: var(--white);
        border-radius: var(--border-radius-md);
        transition: transform 0.3s ease;
    }

    .event-card:hover {
        transform: translateY(-5px);
    }

    .event-image {
        height: 180px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .event-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        /* border-radius: var(--border-radius-md); */
    }

    .event-details {
        padding: 16px 0;
    }

    .event-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .event-date {
        font-size: 14px;
        color: var(--text-secondary);
    }

    .event-buttons {
        display: flex;
        gap: 8px;
        padding: 15px 15px;
    }

    .event-card a {
        font-size: 12px !important;
    }

    .section-title {
        font-size: 28px;
    }

    .subscription {
        text-align: center;
    }

    .subscription h2 {
        font-size: 24px !important;
    }

    .subscription p {
        font-size: 12px !important;
    }

    .subscription button {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }

    /* Footer */
    footer {
        background-color: rgb(23, 23, 23);
        padding: 60px 40px;
        border-top: 1px solid #eee;
        margin: 0 auto;
        width: 100%;
        color: var(--white);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .footer-brand p {
        color: rgb(219, 219, 219);
        margin-top: 16px;
        font-size: 12px;
        max-width: 300px;
    }

    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col p {
        color: rgb(219, 219, 219);
        margin-bottom: 12px;
        font-size: 12px;
    }

    .footer-col a {
        color: rgb(219, 219, 219);
        margin-bottom: 12px;
        font-size: 12px;
    }

    .footer-col a:hover {
        color: var(--accent-orange);
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 12px;
        color: rgb(219, 219, 219);
    }

    .footer-col ul li a:hover {
        color: var(--accent-orange);
    }

    /* Auth */
    .auth-card {
        padding: 24px;
    }

    /* Auth Pages */
    .auth-container {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bg-primary);
        padding: 24px;
    }

    .auth-card {
        background: var(--white);
        padding: 15px !important;
        border-radius: var(--border-radius-lg);
        width: 100%;
        max-width: 480px;
        box-shadow: var(--shadow-soft);
        margin: 0 auto;
    }

    .auth-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .auth-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .auth-header p{
        font-size: 12px;
    }

    .auth-card nav{
        margin-bottom: 32px;
    }

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

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 11px !important;
    }

    .form-input {
        width: 100%;
        padding: 14px;
        border: 1px solid #e0e0e0;
        border-radius: var(--border-radius-sm);
        font-family: var(--font-body);
        font-size: 14px !important;
        transition: border-color 0.3s;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--text-primary);
    }

    .form-actions {
        margin-top: 32px;
    }

    .btn-block {
        width: 100%;
    }

    .text-center {
        text-align: center;
    }

    .auth-footer {
        margin-top: 24px;
        font-size: 14px;
        text-align: center;
        color: var(--text-secondary);
    }

    .o-auth {
        font-size: 12px;
    }

    .auth-footer a {
        color: var(--text-primary);
        font-weight: 600;
        text-decoration: underline;
    }
}