/* =================================================================
   Travel Antalya Theme - Main Stylesheet
   ================================================================= */

/* ROOT VARIABLES - Mediterranean Color Palette */
:root {
    --color-navy: #003049;
    --color-orange: #F77F00;
    --color-turquoise: #00B4D8;
    --color-light: #F8F9FA;
    --color-white: #FFFFFF;
    --color-dark: #212529;
    
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-turquoise);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-orange);
}

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

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 2rem 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(0, 48, 73, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.site-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.site-header.scrolled .site-logo {
    height: 40px;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.search-btn,
.hamburger-btn {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.search-btn:hover,
.hamburger-btn:hover {
    color: var(--color-orange);
    transform: scale(1.1);
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 30px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
}

/* OVERLAY MENU */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-navy);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--color-orange);
    transform: rotate(90deg);
}

.menu-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 2rem;
}

.main-nav {
    list-style: none;
    margin-bottom: 3rem;
}

.main-nav li {
    margin-bottom: 2rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--color-orange);
    transform: translateX(10px);
}

.nav-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--color-turquoise);
    margin-top: 0.5rem;
}

.menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.menu-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.menu-footer .social-icons a {
    color: var(--color-white);
    transition: var(--transition);
}

.menu-footer .social-icons a:hover {
    color: var(--color-orange);
    transform: translateY(-3px);
}

.newsletter-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--color-orange);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-link:hover {
    background: var(--color-turquoise);
    transform: scale(1.05);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 73, 0.7) 0%, rgba(0, 180, 216, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 127, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* INTRO SECTION */
.intro-section {
    padding: 6rem 0;
    background: var(--color-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-content h2 {
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--color-navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--color-dark);
    font-size: 0.95rem;
    margin: 0;
}

/* FEATURED AREAS SECTION */
.featured-areas-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.section-title {
    text-align: center;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 4rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.area-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.area-content {
    padding: 2rem;
}

.area-content h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.area-content p {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.btn-link {
    color: var(--color-orange);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--color-turquoise);
    transform: translateX(5px);
    display: inline-block;
}

/* THINGS TO DO SECTION */
.things-to-do-section {
    padding: 6rem 0;
    background: var(--color-light);
}

.activities-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    overflow-x: auto;
}

.activity-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: var(--color-navy);
    color: var(--color-white);
}

.activity-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    color: var(--color-navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.activity-card:hover h3 {
    color: var(--color-white);
}

.activity-card p {
    color: var(--color-dark);
    font-size: 0.95rem;
    margin: 0;
    transition: var(--transition);
}

.activity-card:hover p {
    color: var(--color-turquoise);
}

/* EVENTS SECTION */
.events-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--color-light);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.event-date {
    background: var(--color-orange);
    color: var(--color-white);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-content h3 {
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.event-location {
    color: var(--color-turquoise);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.event-description {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

/* PLAN TRIP SECTION */
.plan-trip-section {
    padding: 6rem 0;
    background: var(--color-light);
}

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

.plan-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.plan-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.plan-card h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.plan-card p {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

/* FOOTER */
.site-footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social .social-icons a {
    color: var(--color-white);
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    color: var(--color-orange);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--color-orange);
    color: var(--color-white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-turquoise);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* PAGE & POST TEMPLATES */
.page-content,
.single-content,
.archive-content,
.blog-content {
    padding: 8rem 2rem 4rem;
    min-height: 70vh;
}

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    color: var(--color-navy);
}

.entry-meta {
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.entry-meta span {
    margin-right: 1.5rem;
}

.entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.archive-header,
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.archive-title,
.page-header h1 {
    color: var(--color-navy);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.post-card .post-content {
    padding: 2rem;
}

.post-title a {
    color: var(--color-navy);
}

.post-title a:hover {
    color: var(--color-orange);
}

.post-meta {
    font-size: 0.9rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.post-excerpt {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--color-orange);
    font-weight: 600;
}

.read-more:hover {
    color: var(--color-turquoise);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.25rem;
    background: var(--color-light);
    color: var(--color-navy);
    border-radius: 5px;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.pagination .current {
    background: var(--color-navy);
    color: var(--color-white);
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-cards {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .main-nav a {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-video {
        display: none;
    }
    
    .hero-section {
        background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-turquoise) 100%);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-scroll {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .plan-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .main-nav a {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
