/* Berkeley Iceland Contact Page Styles */
/* Matching the main website theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, #0a3d62 0%, #1e5e8c 50%, #3a7ca5 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Header/Navigation Styles */
header {
    background: linear-gradient(180deg, #051f3a 0%, #0a3d62 100%);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.tagline {
    font-size: 14px;
    color: #87ceeb;
    margin-top: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

nav ul li a:hover {
    color: #87ceeb;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #87ceeb, #ffffff, #87ceeb);
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Contact Information Section */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #87ceeb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    color: #e8f4f8;
    line-height: 1.8;
}

.info-item a {
    color: #87ceeb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #87ceeb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #87ceeb;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(135, 206, 235, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.submit-btn {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    color: #051f3a;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Business Hours Section */
.hours-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hours-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #87ceeb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hours-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #87ceeb;
}

.hours-item h3 {
    font-size: 16px;
    color: #87ceeb;
    margin-bottom: 8px;
}

.hours-item p {
    font-size: 14px;
    color: #e8f4f8;
}

/* Footer Styles */
footer {
    background: linear-gradient(180deg, #051f3a 0%, #0a3d62 100%);
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 3px solid #87ceeb;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #87ceeb;
}

.footer-info {
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 14px;
    color: #e8f4f8;
    margin-bottom: 5px;
}

.copyright {
    font-size: 12px;
    color: #87ceeb;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
        margin-top: 15px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Ice Crystal Decorative Elements */
.ice-crystal {
    position: fixed;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.ice-crystal::before {
    content: '❄';
    font-size: 100px;
    color: #ffffff;
}