/* CSS Variables for sophisticated art theme */
:root {
    --white: #ffffff;
    --black: #000000;
    --text-dark: #2c2c2c;
    --text-light: #5a5a5a;
    --border-light: #e8e8e8;
    --hover-bg: #f5f5f5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
    --image-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    --image-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
    --warm-brown: #8b6f47;
    --warm-terracotta: #c97d60;
    --warm-gray: #6b6b6b;
    --art-cream: #f7f5f0;
    --art-sage: #9aab8b;
    --art-dusty-rose: #d4a5a5;
    --art-charcoal: #3d3d3d;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--art-cream);
    padding-top: 80px;
}

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link {
    color: var(--text-dark);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid var(--border-light);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--hover-bg);
    color: var(--text-dark);
    padding-left: 1.75rem;
}

/* Contact Link */
.nav-contact {
    display: flex;
    align-items: center;
}

.contact-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-link:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 4rem 3rem;
    background: var(--art-cream);
    background-image: url('./images/Stars.png');
    background-size: 35%;
    background-position: top right;
    background-repeat: no-repeat;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--art-cream);
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 35%;
    background-image: url('./images/Stars.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.75;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    box-shadow: var(--image-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-image img:hover {
    box-shadow: var(--image-shadow-hover);
    transform: translateY(-2px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
    gap: 1.5rem;
}

.hero-header {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin: 0;
}

/* Art Classes Section */
.art-classes {
    padding: 5rem 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}

.art-classes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.art-classes-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-classes-image img {
    width: 75%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    box-shadow: var(--image-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.art-classes-image img:hover {
    box-shadow: var(--image-shadow-hover);
    transform: translateY(-2px);
}

.art-classes-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0;
    gap: 1.5rem;
}

.art-classes-heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--warm-brown);
    letter-spacing: -0.01em;
    margin: 0;
}

.art-classes-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    letter-spacing: 0;
    margin: 0;
}

/* Collections Section */
.collections {
    padding: 5rem 3rem;
    background: var(--art-cream);
}

.collections-container {
    max-width: 1400px;
    margin: 0 auto;
}

.collections-heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--warm-brown);
    letter-spacing: -0.01em;
    margin: 0 0 3rem 0;
    text-align: center;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-link-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.collection-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    box-shadow: var(--image-shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.collection-link-wrapper:hover .collection-image img {
    box-shadow: var(--image-shadow-hover);
    transform: translateY(-2px);
}

.collection-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--warm-brown);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: center;
}

.collection-link-wrapper:hover .collection-link {
    color: var(--art-charcoal);
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-header {
        font-size: 0.9rem;
        align-self: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 0;
        align-items: center;
    }
    
    .art-classes {
        padding: 3rem 1.5rem;
    }
    
    .art-classes-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .art-classes-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .art-classes-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .art-classes-content {
        align-items: center;
        text-align: center;
    }
    
    .art-classes-image img {
        width: 85%;
    }
    
    .collections {
        padding: 3rem 1.5rem;
    }
    
    .collections-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-hover);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link {
        padding: 1rem 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        background: var(--hover-bg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item:hover .dropdown-menu,
    .nav-item.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding-left: 2rem;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .hero-header {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.5;
    }
    
    .art-classes {
        padding: 2rem 1rem;
    }
    
    .art-classes-container {
        gap: 2rem;
    }
    
    .art-classes-heading {
        font-size: 1.75rem;
    }
    
    .art-classes-text {
        font-size: 0.95rem;
    }
    
    .art-classes-image img {
        width: 90%;
    }
    
    .collections {
        padding: 2rem 1rem;
    }
    
    .collections-heading {
        font-size: 1.75rem;
    }
    
    .collections-grid {
        gap: 2rem;
    }
    
    .collection-link {
        font-size: 1.1rem;
    }
}

/* Collection Page Styles */
.collection-page {
    padding: 5rem 3rem;
    background: var(--art-cream);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.collection-page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.collection-page-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--warm-brown);
    letter-spacing: -0.01em;
    margin: 0 0 3rem 0;
    text-align: center;
}

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

.collection-page-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-page-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    box-shadow: var(--image-shadow);
}

.collection-page-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collection-page-text p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.collection-page-intro {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
    text-align: center;
}

.hearts-image {
    justify-content: flex-start;
}

.stationery-image {
    justify-content: flex-start;
}

.hearts-image img {
    max-width: 45%;
    height: auto;
}

.stationery-image img {
    max-width: 45%;
    height: auto;
}

@media (max-width: 768px) {
    .collection-page {
        padding: 3rem 1.5rem;
    }
    
    .collection-page-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .collection-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collection-page-text p,
    .collection-page-intro {
        font-size: 1.1rem;
    }

    .hearts-image img,
    .stationery-image img {
        max-width: 65%;
    }
}

@media (max-width: 480px) {
    .collection-page {
        padding: 2rem 1rem;
    }
    
    .collection-page-heading {
        font-size: 1.75rem;
    }
    
    .collection-page-text p,
    .collection-page-intro {
        font-size: 1rem;
    }

    .hearts-image img,
    .stationery-image img {
        max-width: 80%;
    }
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 3rem 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

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

.footer-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-logo {
        height: 30px;
    }
}

/* About Page Styles */
.about-page {
    padding: 5rem 3rem;
    background: var(--art-cream);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.about-page-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.about-page-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--warm-brown);
    letter-spacing: -0.01em;
    margin: 0 0 3rem 0;
    text-align: center;
}

.about-page-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-page-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-page-text p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .about-page {
        padding: 3rem 1.5rem;
    }
    
    .about-page-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-page-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 2rem 1rem;
    }
    
    .about-page-heading {
        font-size: 1.75rem;
    }
    
    .about-page-text p {
        font-size: 1rem;
    }
}
