/* Reset and Base Styles v1.1 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #6B5B52;
    --background-light: #FDF5E6;
    --background-white: #FFFFFF;
    --border-color: #E8E0D6;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Source Sans Pro', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #5D2F0A;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #B8540E;
    transform: translateY(-2px);
}

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

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

/* Header */
.header {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    margin-right: 2rem;
}

.nav-brand img {
    height: 100px;
    width: auto;
    margin: 0;
    transition: opacity 0.3s ease;
    display: block;
}

.nav-brand img:hover {
    opacity: 0.8;
}

.nav-brand a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--background-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb .container {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section with Santa Fe Cityscape */
.hero {
    height: 600px;
    background: url('../images/santa-fe-hero-new.jpg') center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    image-rendering: auto;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7);
    color: white;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Page Hero (smaller version for inner pages) */
.page-hero {
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23D2691E" width="1200" height="400"/><polygon fill="%23CD853F" points="0,400 300,200 600,300 900,150 1200,250 1200,400"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    color: white;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    font-weight: 600;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

/* Tours & Activities Hero with Santa Fe Village Background */
.page-hero.tours-activities-hero {
    background: url('../images/santa-fe-village-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.tours-activities-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.tours-activities-hero h1 {
    color: white !important;
    font-size: 3rem !important;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
}

.page-hero.tours-activities-hero p {
    font-size: 1.2rem !important;
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Outdoor Adventures Hero with Sunrise Background */
.page-hero.outdoor-adventures-hero {
    background: url('../images/outdoor-adventures-hero.jpg?v=2') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.outdoor-adventures-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.outdoor-adventures-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.outdoor-adventures-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Shopping Page Hero with Burro Alley Background */
.page-hero.shopping-hero {
    background: url('../images/dining-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.shopping-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.shopping-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.shopping-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Contact Page Hero with Santa Fe Sign Background */
.page-hero.contact-hero {
    background: url('../images/contact-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.contact-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.contact-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Lodging Page Hero with Santa Fe Cityscape Background */
.page-hero.lodging-hero {
    background: url('../images/lodging-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.lodging-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.lodging-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.lodging-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Dining Hero */
.page-hero.dining-hero {
    background: url('../images/shopping-hero.jpg?v=2') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.dining-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.dining-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.dining-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Arts Hero */
.page-hero.arts-culture-hero {
    background: url('../images/arts-culture-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.arts-culture-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.arts-culture-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.arts-culture-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Events Calendar Hero */
.page-hero.events-hero {
    background: url('../images/events-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.events-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.events-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.events-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Travel Tips Hero */
.page-hero.travel-tips-hero {
    background: url('../images/travel-tips-hero.jpg') center center no-repeat !important;
    background-size: cover !important;
    color: white !important;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero.travel-tips-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero.travel-tips-hero h1 {
    color: white !important;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9), 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.7) !important;
    font-weight: 700 !important;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-size: 3rem !important;
}

.page-hero.travel-tips-hero p {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem !important;
}

/* Main Content */
.main {
    padding: 0;
}

.section {
    padding: 0.5rem 0;
}

/* Featured Categories Grid */
.featured-categories {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.featured-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

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

.category-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.listing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.listing-image {
    height: 200px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.listing-content {
    padding: 1.5rem;
}

.listing-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.listing-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Viator Section */
.viator-section {
    padding: 3rem 0;
    background-color: var(--background-light);
}

.viator-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.viator-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.viator-card:hover {
    transform: translateY(-3px);
}

.viator-image {
    height: 180px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.viator-content {
    padding: 1rem;
}

.viator-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.viator-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    font-style: italic;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #d32f2f;
    background-color: #ffebee;
    border-radius: 8px;
    border: 1px solid #ffcdd2;
}

/* Welcome Info Section */
.welcome-info {
    padding: 4rem 0;
}

.info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 8px;
}

.stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
}

/* Events Calendar */
.calendar-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.calendar-day {
    background: white;
    padding: 1rem;
    min-height: 80px;
    position: relative;
}

.calendar-day.other-month {
    background-color: var(--background-light);
    color: var(--text-light);
}

.calendar-event {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    margin-top: 0.2rem;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Affiliate Banners */
.affiliate-banner {
    background: linear-gradient(135deg, #FF9500, #FF6B00);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.affiliate-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.affiliate-banner h3 {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.affiliate-banner p {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.affiliate-banner .btn {
    position: relative;
    z-index: 1;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.social-share-btn:hover {
    transform: translateY(-2px);
}

.social-share-btn.facebook { background-color: #1877F2; }
.social-share-btn.twitter { background-color: #1DA1F2; }
.social-share-btn.pinterest { background-color: #BD081C; }
.social-share-btn.email { background-color: #6B7280; }

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

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

.affiliate-disclosure {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Enhanced Footer with Credentials and Attribution */
.footer-credentials {
    text-align: center;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.credentials-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.25rem;
}

.credential-logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.credential-logo:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.credential-logo img {
    height: 112px;
    width: auto;
    max-width: 112px;
    object-fit: contain;
}

.footer-attribution {
    text-align: center;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.attribution-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.attribution-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.attribution-logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.attribution-logo:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.attribution-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        box-shadow: var(--shadow);
        flex-direction: column;
        padding: 6rem 1rem 1rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1100;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .tours-activities-hero h1 {
        font-size: 2.5rem;
    }

    .tours-activities-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .dining-hero h1,
    .arts-culture-hero h1,
    .events-hero h1,
    .travel-tips-hero h1 {
        font-size: 2.5rem;
    }

    .dining-hero p,
    .arts-culture-hero p,
    .events-hero p,
    .travel-tips-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .viator-grid {
        grid-template-columns: 1fr;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-grid {
        font-size: 0.9rem;
    }

    .calendar-day {
        min-height: 60px;
        padding: 0.5rem;
    }

    .social-share {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .credentials-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .credential-logo img {
        height: 80px;
        max-width: 80px;
    }
    
    .attribution-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .info-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}
