/*
Theme Name: itsnotanothershot
Theme URI: https://www.itsnotanotherspace.com
Author: itsnotanothershot
Description: Minimal photography theme with gallery carousel.
Version: 3.2
Text Domain: itsnotanothershot
*/

/* ------------------------------------------------------------ */
/* FONTS */
/* ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ------------------------------------------------------------ */
/* RESET */
/* ------------------------------------------------------------ */
:root {
    --background: #ffffff;
    --foreground: #000000;
    --nav-height: 5rem;
}

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

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
}

/* LOGO FONT */
.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.06em;
}


/* ------------------------------------------------------------ */
/* HEADER */
/* ------------------------------------------------------------ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    justify-content: space-between;
    z-index: 1000;
}

.site-logo {
    font-size: 1.85rem;
    font-weight: 600;
    color: #000;
    text-decoration: none !important;
    letter-spacing: 0.06em;
}

/* NAV (DESKTOP) */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #000;
    text-decoration: none !important;
}

.nav-link::after {
    display: none !important;
}

.nav-link:visited {
    color: #666 !important;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    transition: .3s ease;
}

.social-icon:hover svg {
    opacity: .5;
    transform: scale(1.2);
}


/* ------------------------------------------------------------ */
/* MOBILE NAV */
/* ------------------------------------------------------------ */
.hamburger {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 22px;
    gap: 4px;
    cursor: pointer;
    border: none;
    background: none;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .main-navigation {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 240px;
        height: calc(100vh - var(--nav-height));
        background: #fff;
        flex-direction: column;
        padding: 1.5rem 1.5rem;
        gap: 1.6rem;
        transition: 0.35s ease;
        box-shadow: -2px 0 14px rgba(0,0,0,0.1);
    }

    .main-navigation.active { right: 0; }
}


/* ------------------------------------------------------------ */
/* MAIN WRAPPER */
/* ------------------------------------------------------------ */
main {
    padding-top: var(--nav-height);
}


/* ------------------------------------------------------------ */
/* HOME */
/* ------------------------------------------------------------ */
.home-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.home-title {
    font-size: 5rem;
    margin-bottom: 22px;
}

.home-subtitle {
    font-size: 1.25rem;
    color: #444;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.09em;
    line-height: 1.9;
}

.view-gallery-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 10px 28px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: #555;
    text-decoration: none;
    transition: all 0.25s ease;
}

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


/* ------------------------------------------------------------ */
/* CONTACT (ULTRA COMPACT — NO SCROLL) */
/* ------------------------------------------------------------ */
.contact-page {
    min-height: calc(100vh - var(--nav-height) - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;      /* centra en pantalla */
    align-items: center;
    text-align: center;
    padding: 10px 10px;
    gap: 4px;
}

.contact-page h1 {
    font-size: 2.2rem;
    margin-bottom: 2px;
}

.contact-page p {
    margin-bottom: 2px;
    font-size: 1rem;
}

.contact-email {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.contact-social svg {
    width: 32px;
    height: 32px;
}

.contact-studio {
    margin-top: 4px;
    font-size: 0.95rem;
    max-width: 360px;
}

/* MAP — muy compacto */
.contact-map {
    margin-top: 6px;
    margin-bottom: 2px;
}

.contact-map iframe {
    width: 230px;
    height: 230px;
    border-radius: 5px;
}

.contact-address {
    font-size: 0.95rem;
    margin-top: 2px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .contact-page {
        min-height: calc(100vh - var(--nav-height) - 80px);
        padding: 6px 10px;
    }

    .contact-map iframe {
        width: 70%;
        height: 200px;
    }
}


/* ------------------------------------------------------------ */
/* FOOTER */
/* ------------------------------------------------------------ */
.site-footer {
    width: 100%;
    padding: 22px 30px;       /* reducido */
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 28px;         /* reducido */
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.80rem;
}

.footer-right {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 6px;
    }
}


/* ------------------------------------------------------------ */
/* SAFARI FIX */
/* ------------------------------------------------------------ */
@supports (-webkit-touch-callout: none) {
    .carousel-item img {
        height: 75vh !important;
    }
}
