/*
Theme Name: Fenomeno Studio
Theme URI: https://fenomenostudio.com
Author: Fenomeno Studio
Author URI: https://fenomenostudio.com
Description: Tema personalizzato per Fenomeno Studio - Comunicazione visiva per il turismo atipico
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fenomeno-studio
*/

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #1a1a1a;
    --color-light: #e8e4d9;
    --color-accent: #a4d65e;
    --font-serif: 'Sanchez', 'Libre Baskerville', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Chapbook', 'Libre Baskerville', Georgia, serif;
    --font-heading: 'Bank Gothic', 'Lato', Arial, sans-serif;
}

body {
    font-family: var(--font-serif);
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-icons a {
    color: var(--color-accent);
    font-size: 20px;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 0.7;
}

.main-nav {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Lato', var(--font-sans);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-accent);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-text {
    font-size: 72px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0;
    line-height: 1;
    font-family: 'Chapbook', var(--font-display);
}

.logo-studio {
    font-size: 18px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Lato', var(--font-sans);
    font-weight: 900;
    margin-top: 5px;
}

.logo-decoration {
    font-size: 48px;
    color: var(--color-accent);
    margin: 0 20px;
}

.tagline {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 30px;
    font-family: var(--font-serif);
}

.circular-pattern {
    position: absolute;
    right: 50px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

/* Content Section */
.content-section {
    background: var(--color-light);
    padding: 100px 60px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Bank Gothic', var(--font-heading);
}

.section-subtitle {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-family: 'Bank Gothic', var(--font-heading);
}

.section-divider {
    width: 40px;
    height: auto;
    margin: 30px auto;
    color: var(--color-dark);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-dark);
}

.content-text p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        gap: 20px;
        font-size: 12px;
    }

    .logo-text {
        font-size: 48px;
    }

    .tagline {
        font-size: 20px;
    }

    .section-title,
    .section-subtitle {
        font-size: 28px;
    }

    .content-section {
        padding: 60px 30px;
    }
}


.img_h{
    padding-top:300px;
}
