/* Clean Mobile-First Design for Riva Bodrum Guide */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --light-blue: #a8dadc;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #2d3748;
    --border-color: #e2e8f0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.95), rgba(30, 61, 114, 0.95));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color), #1e3d72);
    width: 250px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    list-style: none;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
    display: block;
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(244, 162, 97, 0.2);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.7), rgba(30, 61, 114, 0.5));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem;
    max-width: 90%;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-img {
    max-width: 120px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-style: italic;
    color: var(--secondary-color) !important;
    font-weight: 500;
    font-size: 1.1rem !important;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button.primary:hover {
    background: var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.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);
    }
}

/* Sections */
.section {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.alt-bg {
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* About Bodrum Section */
.bodrum-intro {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.intro-text {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.bodrum-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    font-weight: 500;
    text-align: center;
}

/* Attractions Section */
.attractions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.attraction-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.attraction-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.attraction-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tip {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.tip i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Attraction Location Links */
.attraction-location {
    margin-top: 1.5rem;
    text-align: center;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.location-link:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

.location-link i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* New Practical Information Section */
.practical-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.practical-section {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.practical-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.section-header {
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.section-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.transport-image {
    padding: 1rem;
    text-align: center;
}

.transport-image img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.info-content {
    padding: 1.5rem;
}

.info-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.info-item.highlight {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(168, 218, 220, 0.1));
    border-left-color: var(--accent-color);
    border-left-width: 5px;
}

.info-item.highlight i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.info-item ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.info-item ul li {
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.location-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.location-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.location-link i {
    color: var(--accent-color);
}

/* Beach directions styling */
.beach-directions {
    margin-top: 0.8rem;
    padding: 1rem;
    background: rgba(168, 218, 220, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--light-blue);
}

/* Beach and transport images */
.beach-image, .bus-hub-image {
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.beach-image img, .bus-hub-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beach-image img:hover, .bus-hub-image img:hover {
    transform: scale(1.05);
}

/* Beach link styling */
.beach-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #16a085, #3498db);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.beach-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
    color: var(--white);
}

.beach-link i {
    font-size: 1rem;
}

/* Page Hero Sections */
.page-hero {
    background: linear-gradient(135deg, #16a085, #3498db);
    padding: 40px 0 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.page-hero i {
    font-size: 2rem;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Theme-specific hero backgrounds */
.page-hero.shopping-theme {
    background: linear-gradient(135deg, #16a085, #3498db);
    position: relative;
}

.page-hero.shopping-theme::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>') repeat-x;
    background-size: 1200px 100px;
}

.page-hero.nightlife-theme {
    background: linear-gradient(135deg, #2c3e50, #16537e);
}

.page-hero.restaurants-theme {
    background: linear-gradient(135deg, #27ae60, #f39c12);
}

.page-hero.trips-theme {
    background: linear-gradient(135deg, #3498db, #16a085);
}

/* Shopping List Format */
.shopping-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

.shopping-item {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.1);
    border-left: 5px solid #16a085;
    position: relative;
    overflow: hidden;
}

.shopping-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(22, 160, 133, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.shopping-item h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shopping-number {
    background: linear-gradient(135deg, #16a085, #3498db);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.shopping-subtitle {
    color: #16a085;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.shopping-image {
    margin: 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.2);
    transition: transform 0.3s ease;
}

.shopping-image:hover {
    transform: translateY(-3px);
}

.shopping-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}

/* Specific positioning for different images */
.restaurants-theme .shopping-image img {
    object-position: center bottom;
}

.shopping-item:nth-child(3) .shopping-image img {
    object-position: center top;
}

.shopping-image:hover img {
    transform: scale(1.05);
}

.shopping-description {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.shopping-directions {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #16a085;
    margin-top: 1.5rem;
}

.shopping-directions h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shopping-directions p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shopping-directions p:last-child {
    margin-bottom: 0;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #16a085, #3498db);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.directions-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 160, 133, 0.4);
}

/* Maritime decorations - Much more visible */
.shopping-list::before {
    content: '⚓';
    position: absolute;
    left: -2%;
    top: 5%;
    font-size: 4rem;
    color: rgba(22, 160, 133, 0.4);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.shopping-list::after {
    content: '🚢';
    position: absolute;
    right: -1%;
    bottom: 10%;
    font-size: 3.5rem;
    opacity: 0.35;
    animation: float 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

/* Additional sea decorations */
.container {
    position: relative;
}

.container::before {
    content: '⛵';
    position: absolute;
    left: -3%;
    top: 15%;
    font-size: 3.5rem;
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.container::after {
    content: '⚓';
    position: absolute;
    right: -2%;
    top: 35%;
    font-size: 3rem;
    color: rgba(22, 160, 133, 0.35);
    animation: float 22s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

/* Hero section decorations */
.page-hero::after {
    content: '🚢';
    position: absolute;
    left: -2%;
    top: 20%;
    font-size: 2.5rem;
    opacity: 0.25;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* More visible maritime elements */
.section::before {
    content: '⚓';
    position: absolute;
    left: -4%;
    top: 50%;
    font-size: 4.5rem;
    color: rgba(22, 160, 133, 0.25);
    animation: float 35s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.section::after {
    content: '🛥️';
    position: absolute;
    right: -3%;
    top: 60%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 28s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Additional floating elements */
.shopping-item:nth-child(odd)::before {
    content: '⛵';
    position: absolute;
    left: -20px;
    top: 10px;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 24s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.shopping-item:nth-child(even)::before {
    content: '⚓';
    position: absolute;
    right: -20px;
    top: 15px;
    font-size: 2.2rem;
    color: rgba(22, 160, 133, 0.2);
    animation: float 26s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

/* Seafood decorations for restaurants page */
.restaurants-theme .shopping-list::before {
    content: '🐟';
    position: absolute;
    left: -2%;
    top: 8%;
    font-size: 3.5rem;
    opacity: 0.3;
    animation: float 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .shopping-list::after {
    content: '🦞';
    position: absolute;
    right: -1%;
    bottom: 15%;
    font-size: 3rem;
    opacity: 0.25;
    animation: float 20s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .container::before {
    content: '🐙';
    position: absolute;
    left: -3%;
    top: 25%;
    font-size: 3.2rem;
    opacity: 0.2;
    animation: float 28s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .container::after {
    content: '🦀';
    position: absolute;
    right: -2%;
    top: 45%;
    font-size: 2.8rem;
    opacity: 0.22;
    animation: float 24s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .section::before {
    content: '🐠';
    position: absolute;
    left: -4%;
    top: 55%;
    font-size: 3.8rem;
    opacity: 0.18;
    animation: float 32s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .section::after {
    content: '🦑';
    position: absolute;
    right: -3%;
    top: 65%;
    font-size: 3.5rem;
    opacity: 0.2;
    animation: float 26s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .shopping-item:nth-child(odd)::before {
    content: '🐟';
    position: absolute;
    left: -18px;
    top: 12px;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.restaurants-theme .shopping-item:nth-child(even)::before {
    content: '🦐';
    position: absolute;
    right: -18px;
    top: 18px;
    font-size: 2.2rem;
    opacity: 0.18;
    animation: float 27s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

/* More decorative elements */
.shopping-item:nth-child(1)::after {
    content: '🚢';
    position: absolute;
    right: -15px;
    bottom: 20px;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
}

.shopping-item:nth-child(2)::after {
    content: '🌊';
    position: absolute;
    left: -15px;
    bottom: 30px;
    font-size: 2.2rem;
    opacity: 0.12;
    animation: float 28s ease-in-out infinite reverse;
    pointer-events: none;
}

.shopping-item:nth-child(3)::after {
    content: '🏖️';
    position: absolute;
    right: -10px;
    top: 30px;
    font-size: 1.8rem;
    opacity: 0.1;
    animation: float 26s ease-in-out infinite;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 30px 0 20px;
        margin-top: 60px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-hero i {
        font-size: 1.8rem;
    }
    
    .shopping-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .shopping-item h2 {
        font-size: 1.6rem;
    }
    
    .shopping-list {
        padding: 1rem;
    }
}

  .beach-directions p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.beach-directions p:last-child {
    margin-bottom: 0;
}

.beach-directions ul {
    margin: 0.5rem 0 0.8rem 1rem;
    padding: 0;
}

.beach-directions ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Comments Section */
.comments-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.add-comment {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.add-comment h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.comments-list {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.comments-list h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.comment-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.comment-date {
    color: #666;
    font-size: 0.85rem;
}

.comment-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section - Founder Design */
.founder-contact {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.founder-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    width: 100%;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.founder-photo {
    position: relative;
    flex-shrink: 0;
}

.founder-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.founder-photo:hover img {
    transform: scale(1.05);
    border-color: #3498db;
}

.founder-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-title {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-method.email:hover {
    border-color: #e74c3c;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
}

.contact-method.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.2);
}

.contact-method.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.contact-method.phone:hover {
    border-color: #3498db;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.email .method-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.telegram .method-icon {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
}

.whatsapp .method-icon {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: white;
}

.phone .method-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.method-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.method-value {
    color: #34495e;
    font-size: 0.95rem;
}

.founder-note {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2c3e50;
    font-size: 0.9rem;
}

.founder-note i {
    color: #3498db;
    font-size: 1.1rem;
}

.about-guide {
    margin-top: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.guide-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guide-message p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-message em {
    color: var(--accent-color);
    font-style: italic;
}

.guide-signature {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.guide-signature p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-color));
    color: var(--white);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .bodrum-intro {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .intro-text {
        flex: 1;
    }
    
    .bodrum-images {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .bodrum-images .image-container:first-child {
        grid-column: 1 / -1;
    }
    
    .attractions-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .practical-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .comments-section {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .add-comment,
    .comments-list {
        flex: 1;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
}

@media screen and (min-width: 768px) {
    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .logo-img {
        max-width: 150px;
    }
    
    .bodrum-images {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .bodrum-images .image-container:first-child {
        grid-column: 1;
    }
    
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .practical-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

/* Touch Optimizations */
.attraction-card,
.practical-card,
.contact-card,
.image-container {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Loading and Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.attraction-card,
.practical-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Support Section Styles */
.support-section {
    margin: 3rem 0;
    text-align: center;
}

.support-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.support-card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.support-content {
    position: relative;
    z-index: 2;
}

.support-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.support-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.support-button:hover {
    background: var(--light-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.support-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.support-button:hover i {
    transform: rotate(15deg) scale(1.1);
}

.support-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 1rem !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .support-section {
        margin: 2rem 0;
    }
    
    .support-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .support-card h3 {
        font-size: 1.5rem;
    }
    
    .support-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    /* Founder Contact Mobile */
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .founder-photo img {
        width: 150px;
        height: 150px;
    }
    
    .founder-info h3 {
        font-size: 2rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .founder-description {
        font-size: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        justify-content: center;
        padding: 1.2rem;
    }
    
    .method-info {
        text-align: left;
    }
}