:root {
    --background: #fdfcfb;
    --foreground: #1a1a1a;
    --primary: #8b735b;
    --secondary: #d4a373;
    --accent: #ccd5ae;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

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

.hidden {
    display: none !important;
}

.placeholder-bg {
    background: repeating-linear-gradient(
        45deg,
        var(--gray-100),
        var(--gray-100) 20px,
        var(--gray-200) 20px,
        var(--gray-200) 40px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 251, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
}

.nav-content {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

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

.nav-links i {
    width: 18px;
    height: 18px;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.9;
}

/* Sections Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
}

.divider.left {
    margin: 0 0 25px 0;
}

.subtitle {
    color: var(--gray-500);
    font-weight: 300;
}

/* Featured Section */
.featured-section {
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.featured-img {
    height: 200px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text {
    padding: 25px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gray-100);
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--primary);
}

.date {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-left: 10px;
}

.featured-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.featured-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-text i {
    width: 14px;
    height: 14px;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    min-height: 500px; /* Make it more important/larger */
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 25px;
    font-weight: 300;
}

.about-signature {
    margin-top: 40px;
    max-width: 200px;
}

.about-signature img {
    width: 100%;
    opacity: 0.8;
}

/* Music Section */
.music-section {
    padding: 100px 0;
    background-color: var(--gray-50);
}

/* CTA Section */
.cta-section {
    padding: 200px 0;
    background: url('assets/photos/megan-carelse-1.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 115, 91, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.cta-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.cta-form button {
    padding: 15px 30px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-form button:hover {
    background: var(--black);
}

/* Acting Section */
.acting-section {
    padding: 100px 0;
}

.acting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.acting-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.view-resume-container {
    text-align: center;
    margin-top: 60px;
}

.view-resume {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.view-resume:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-box h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-details {
    list-style: none;
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: var(--gray-600);
}

.contact-details i {
    color: var(--primary);
    width: 20px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-900);
}

.form-group input, 
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.music-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.album-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.album-item:hover {
    transform: translateY(-5px);
}

.album-item .cover-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-item .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.album-item:hover .play-overlay {
    opacity: 1;
}

.album-item .play-overlay i {
    width: 40px;
    height: 40px;
    color: var(--white);
    fill: currentColor;
}

.album-item h3 {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
}

.album-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Player Card */
.player-container {
    position: sticky;
    top: 100px;
}

.player-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.player-cover {
    aspect-ratio: 1/1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.player-info p {
    color: var(--gray-500);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.control-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s;
}

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

.play-pause-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 115, 91, 0.3);
    transition: transform 0.2s, background 0.3s;
}

.play-pause-btn:hover {
    transform: scale(1.05);
    background: var(--secondary);
}

.play-pause-btn i {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.progress-container {
    height: 4px;
    background: var(--gray-100);
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s linear;
}

.buy-track-btn {
    width: 100%;
    padding: 15px;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.buy-track-btn:hover {
    background: var(--black);
}

/* Acting Section */
.acting-section {
    padding: 100px 0;
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

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

.section-header-row h2 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.view-resume {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-resume:hover {
    text-decoration: underline;
}

.acting-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}

.acting-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.acting-item {
    flex: 0 0 400px;
    cursor: pointer;
}

.acting-thumb {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.acting-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.acting-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
}

.acting-item:hover .acting-overlay {
    opacity: 1;
}

.acting-overlay span {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.acting-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.acting-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Merch Section */
.merch-section {
    padding: 100px 0;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.merch-item {
    display: flex;
    flex-direction: column;
}

.merch-img {
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--gray-50);
}

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

.merch-item:hover .merch-img img {
    transform: scale(1.03);
}

.merch-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.merch-details h3 {
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 5px;
}

.merch-price {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 300;
}

.add-merch-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-900);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.add-merch-btn:hover {
    background: var(--primary);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a {
    color: var(--gray-400);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--white);
}

.social-links i {
    width: 24px;
    height: 24px;
}

.contact-info {
    color: var(--gray-400);
    font-weight: 300;
    margin-bottom: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .music-grid-layout {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .acting-item {
        flex: 0 0 300px;
    }
}
