:root {
    --primary-color: #2E86AB;        /* Mediterranean Blue */
    --secondary-color: #F24236;      /* Sunset Orange/Red */
    --tertiary-color: #A23B72;       /* Bougainvillea Pink */
    --accent-color: #1B4965;         /* Deep Ocean Blue */
    --light-bg: #F7F9FB;            /* Soft White */
    --dark-text: #2C3E50;           /* Charcoal Blue */
    --warm-sand: #E8D5B7;           /* Sandy Beige */
    --olive-green: #6B7A8F;         /* Olive/Sage */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

.hero-section {
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    ), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/*
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
*/

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 134, 171, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 66, 54, 0.4);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(46, 134, 171, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 134, 171, 0.25);
}

.gallery-img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(27, 73, 101, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 3px solid white;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(27, 73, 101, 0.3);
}

.contact-section {
    background: linear-gradient(135deg, var(--light-bg), #e8f4f8);
    padding: 5rem 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.15);
    border: 1px solid rgba(46, 134, 171, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(27, 73, 101, 0.3);
}

.contact-info h4 {
    color: var(--warm-sand);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--warm-sand);
    margin-right: 10px;
}

.navbar {
    background-color: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(46, 134, 171, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--accent-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3);
}

.location-highlights {
    background: linear-gradient(135deg, var(--light-bg), #f0f8ff);
    padding: 5rem 0;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(46, 134, 171, 0.12);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.2);
}

.location-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(242, 66, 54, 0.1));
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
}

/* Additional Greek island styling */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

footer {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color)) !important;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .location-item {
        padding: 1rem;
    }
    
    .location-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}