/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #F8F6F0;
    color: #1C1C1A;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ==================== LAYOUT UTILITIES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1C1C1A;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #E5E1D8;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #A88863;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 5rem;
    position: relative;
}

.hero-content {
    padding: 4rem;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #A88863;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #595854;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #A88863;
    color: #F8F6F0;
}

.btn-primary:hover {
    background: #8a6d4f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #A88863;
    color: #A88863;
}

.btn-secondary:hover {
    background: #A88863;
    color: #F8F6F0;
    transform: translateY(-2px);
}

.hero-image {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==================== ANIMATED RIBBON ==================== */
.ribbon {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    background: #1C1C1A;
    padding: 1rem 0;
    overflow: hidden;
    z-index: 3;
}

.ribbon-content {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    color: #F8F6F0;
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 300;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==================== COMP CARD SECTION ==================== */
.comp-card-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.comp-card-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #A88863;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595854;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    color: #1C1C1A;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E5E1D8;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595854;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1C1C1A;
}

/* ==================== TIMELINE (MODELING EXPERIENCE) ==================== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.timeline-date {
    display: inline-block;
    background: #A88863;
    color: #F8F6F0;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.timeline-role {
    font-size: 1.1rem;
    color: #A88863;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.timeline-brand {
    font-size: 0.95rem;
    color: #595854;
    margin-bottom: 1rem;
}

.timeline-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #595854;
}

.timeline-images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-images img:hover {
    transform: scale(1.05);
}

/* ==================== EXPERIENCE CARDS (TV/FILM & COMMERCIAL) ==================== */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.experience-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #E5E1D8;
    transition: all 0.3s ease;
}

.experience-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.experience-title {
    font-size: 1.8rem;
    font-weight: 400;
}

.experience-year {
    background: #A88863;
    color: #F8F6F0;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 15px;
    font-weight: 600;
}

.experience-role {
    font-size: 1.1rem;
    color: #A88863;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.experience-network,
.experience-type {
    font-size: 0.95rem;
    color: #595854;
    margin-bottom: 0.5rem;
}

.experience-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #595854;
    margin: 1.5rem 0;
}

.experience-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.experience-images img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.experience-images img:hover {
    transform: scale(1.05);
}

/* ==================== AWARDS SECTION ==================== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.award-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #A88863;
    transition: all 0.3s ease;
}

.award-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.award-year {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #A88863;
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.award-category {
    display: inline-block;
    background: #F8F6F0;
    color: #A88863;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-org {
    font-size: 1rem;
    color: #1C1C1A;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.award-event {
    font-size: 0.9rem;
    color: #595854;
    margin-bottom: 1rem;
}

.award-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #595854;
}

/* ==================== PERSONALITY SECTION ==================== */
.personality-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #595854;
    margin-bottom: 3rem;
    max-width: 900px;
}

.personality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.personality-col {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid #A88863;
}

.personality-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #A88863;
    font-weight: 400;
}

.personality-list {
    list-style: none;
}

.personality-list li {
    font-size: 1rem;
    color: #595854;
    padding: 0.8rem 0;
    border-bottom: 1px solid #E5E1D8;
    position: relative;
    padding-left: 1.5rem;
}

.personality-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A88863;
    font-size: 1.5rem;
    line-height: 1;
}

.personality-list li:last-child {
    border-bottom: none;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #595854;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #595854;
    font-weight: 500;
}

.contact-value {
    font-size: 1.3rem;
    color: #1C1C1A;
    font-weight: 400;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1C1C1A;
    color: #F8F6F0;
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #E5E1D8;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-powered {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #F8F6F0;
    font-weight: 500;
}

.footer-logo-link {
    display: inline-flex;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 200px;
    height: 55px;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 60vh;
    }
    
    .comp-card-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .personality-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        height: 300px;
    }
}
