:root {
    --bg-light: #f8f8f8;
    --bg-dark: #161616;
    --text-light: #ffffff;
    --text-dark: #111111;
    --accent: #e5e5e5;
    
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 50px;
    cursor: pointer;
}

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

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

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

.btn-light:hover {
    background-color: transparent;
    color: var(--text-light);
}

/* Sections */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: 6vw;
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.massive-title {
    font-size: 5rem;
}

.huge-title {
    font-family: var(--font-heading);
    font-size: 5vw;
    line-height: 1;
    letter-spacing: 2px;
}

.medium-title {
    font-family: var(--font-heading);
    font-size: 3vw;
    line-height: 1;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(248, 248, 248, 0.95);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a {
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bg-dark);
    transition: width 0.3s ease;
}

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

/* Hero */
.hero {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay-text {
    position: absolute;
    bottom: 50px;
    right: 50px;
    text-align: right;
    color: white;
}

.hero-overlay-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

/* Philosophy */
.philosophy {
    padding: 120px 5%;
}

.philosophy-content {
    display: flex;
    gap: 8%;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 20px 0;
    text-transform: uppercase;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 500px;
}

.philosophy-gallery {
    flex: 1;
    display: flex;
    gap: 20px;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.col-1 {
    margin-top: 50px;
}

.gallery-col img {
    width: 100%;
    border-radius: 4px;
}

/* Portfolio & Products (Common) */
.portfolio, .products {
    padding: 120px 5%;
    overflow: hidden;
}

.portfolio-row, .products-row {
    display: flex;
    align-items: center;
    gap: 8%;
}

.portfolio-img-wrapper, .products-img-wrapper {
    flex: 1.2;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-img-wrapper img, .products-img-wrapper img {
    width: 100%;
    height: 600px;
    transform: scale(1.1);
}

.portfolio-text, .products-text {
    flex: 1;
    position: relative;
}

.flex-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.small-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
}

.products-text .small-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 30px;
    color: #555;
}

.inline-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.inline-link:hover {
    color: #666;
    border-color: #666;
}

.bottom-text {
    margin-top: 120px;
}

/* Services */
.services {
    padding: 120px 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 15px;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover img {
    transform: scale(1.08);
}

.service-item h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-item:hover h3 {
    transform: translate(-50%, -50%) scale(1.05);
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.service-item:hover::after {
    background: rgba(0,0,0,0.3);
}

.item-1 { grid-column: 1 / 3; grid-row: 1 / 2; } /* Layers */
.item-5 { grid-column: 1 / 3; grid-row: 2 / 3; } /* Hairdo */
.item-2 { grid-column: 3 / 5; grid-row: 1 / 2; } /* Volume */
.item-3 { grid-column: 3 / 4; grid-row: 2 / 3; } /* Bangs */
.item-4 { grid-column: 4 / 5; grid-row: 2 / 3; } /* Ombre */

/* Info Section */
.info {
    padding: 0; 
}

.info-content {
    display: flex;
    padding: 120px 5%;
    gap: 10%;
    align-items: center;
}

.hours, .calendar {
    flex: 1;
}

.hours-list {
    list-style: none;
    border-top: 1px solid #ddd;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Calendar styling */
.cal-wrapper {
    background: white;
    border: 2px solid #000;
    padding: 4px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}

.cal-header {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    font-size: 1.4rem;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
}

.day-name {
    padding: 15px 0;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
}

.day {
    padding: 15px 0;
    font-size: 0.95rem;
    color: #333;
}

.day.active {
    background: #e0e0e0;
    font-weight: bold;
    color: #000;
}

.video-section {
    padding: 0 5%;
    margin-bottom: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.play-btn svg {
    width: 35px;
    height: 35px;
    margin-left: 5px; 
    stroke: var(--bg-dark);
}

/* Footer */
.footer {
    padding: 100px 5% 40px;
}

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

.footer-nav {
    display: flex;
    gap: 40px;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.footer-nav a {
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #888;
}

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

.footer-center h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    letter-spacing: 2px;
}

.footer-gallery {
    display: flex;
    gap: 20px;
    margin: 80px 0;
}

.footer-gallery img {
    flex: 1;
    height: 300px;
    object-position: center 30%;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.footer-gallery img:hover {
    transform: translateY(-10px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1.5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .icon {
    width: 36px;
    height: 36px;
    border: 1px solid #555;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.social-icons .icon:hover {
    background: #fff;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero { flex-direction: column; }
    .hero-title { font-size: 10vw; }
    .philosophy-content { flex-direction: column; gap: 60px; }
    .portfolio-row, .products-row { flex-direction: column; gap: 60px; }
    .services-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .item-1, .item-2, .item-3, .item-4, .item-5 { grid-column: auto; grid-row: auto; height: 400px; }
    .info-content { flex-direction: column; gap: 60px; }
    .footer-top { flex-direction: column; gap: 60px; }
    .footer-gallery { flex-direction: column; }
    .video-wrapper { height: 400px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 12vw; }
    .massive-title { font-size: 3rem; }
    .footer-center h2 { font-size: 2.5rem; }
}
