/*
Theme Name: Tina Shoulders
Author: Tina Shoulders
Version: 1.0
*/

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

/* LOGO - Top left corner, not sticky */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 30px 40px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-branding {
    display: block;
}

/* Hide navigation in header - we don't need it */
.main-navigation {
    display: none;
}

/* SPLIT SCREEN HERO - Photo left, content right */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-photo {
    background: #000;
}

.hero-photo img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: grayscale(20%);
}

.hero-content {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #fff;
}

.hero-inner {
    max-width: 600px;
    text-align: center;
}

.hero-inner h1 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* ROTATING TEXT - Profession titles */
.rotating-text-wrapper {
    margin: 50px 0;
}

.rotating-text {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text span {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
    text-align: center;
}

.rotating-text span.active {
    opacity: 1;
    position: relative;
}

.hero-inner p {
    font-size: 20px;
    line-height: 1.8;
    margin: 30px 0;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    max-width: 500px;
}

.hero-box {
    padding: 40px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    background: transparent;
}

.hero-box:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
}

.hero-box h3 {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* SECTIONS - Alternating white/black */
.section {
    padding: 100px 40px;
}

.section-light {
    background: #fff;
    color: #000;
}

.section-dark {
    background: #000;
    color: #fff;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section img {
    width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    border: 2px solid #000;
    color: #000;
    background: transparent;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.section-dark .btn {
    border-color: #fff;
    color: #fff;
}

.section-dark .btn:hover {
    background: #fff;
    color: #000;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #ddd;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.contact-form button {
    padding: 18px 40px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: transparent;
    color: #000;
}

/* FOOTER */
.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #fff;
    color: #000;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh auto;
    }
    
    .hero-photo img {
        height: 50vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .static-word,
    .words-carousel {
        font-size: 40px;
    }
    
    .section-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-navigation {
        display: none;
    }
}
