/* Golfclub Hohe Tauern Mittersill - Original Style Recreation */

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    color: #2a6e2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a4a1a;
}

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

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2a6e2a;
    margin-bottom: 15px;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

.txt2 {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.txt3 {
    font-size: 14px;
    text-align: center;
    color: #666;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.grid_3 { width: 25%; padding: 0 15px; }
.grid_5 { width: 41.66%; padding: 0 15px; }
.grid_7 { width: 58.33%; padding: 0 15px; }
.grid_12 { width: 100%; padding: 0 15px; }

.clear { clear: both; }

/* ========== Header ========== */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 120px;
    width: auto;
}

.logo h1 {
    margin: 0;
    font-size: 0;
}

/* ========== Navigation ========== */
.menu_holder {
    background: linear-gradient(135deg, #2a6e2a 0%, #1a5a1a 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sf-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.sf-menu > li {
    position: relative;
}

.sf-menu > li > a {
    display: block;
    padding: 18px 25px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.sf-menu > li:hover > a,
.sf-menu > li.active > a {
    background: rgba(255,255,255,0.15);
}

/* Dropdown */
.sf-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    list-style: none;
    z-index: 100;
}

.sf-menu li:hover > .sub-menu {
    display: block;
}

.sf-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.sf-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: #2a6e2a;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 48px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.slider_txt1 {
    font-size: 36px;
    font-style: italic;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* ========== Content Sections ========== */
.section {
    padding: 60px 0;
}

.section-light {
    background: #fff;
}

.section-gray {
    background: #f0f0f0;
}

.section-green {
    background: linear-gradient(135deg, #2a6e2a 0%, #1a5a1a 100%);
    color: #fff;
}

.section-green h2,
.section-green h3 {
    color: #fff;
}

/* ========== Box Styles ========== */
.box-1 {
    background: #fff;
    padding: 40px 0;
}

.box-2 {
    background: #2a6e2a;
    padding: 40px 0;
    color: #fff;
}

.box-2 h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

/* ========== Images ========== */
.img-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.img-gallery img {
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.img-gallery img:hover {
    transform: scale(1.05);
}

.img-main {
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* ========== Cards ========== */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 20px;
}

.card h3 {
    border-bottom: 2px solid #2a6e2a;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2a6e2a;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1a5a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 110, 42, 0.3);
}

.more_btn {
    display: inline-block;
    padding: 8px 20px;
    background: #2a6e2a;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 10px;
}

.more_btn:hover {
    background: #1a5a1a;
    color: #fff;
}

/* ========== Divider ========== */
.trenner {
    height: 5px;
    background: linear-gradient(90deg, #2a6e2a, #4a8e4a, #2a6e2a);
}

/* ========== Footer ========== */
footer {
    background: #222;
    color: #ccc;
    padding: 0;
}

.footer_priv {
    padding: 40px 0;
}

.footer_priv .row {
    display: flex;
    flex-wrap: wrap;
}

.footer_priv .grid_3 {
    margin-bottom: 20px;
}

.txtfooter {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    border-bottom: 2px solid #2a6e2a;
    padding-bottom: 10px;
}

footer address {
    font-style: normal;
    line-height: 1.8;
}

footer a {
    color: #8ebe8e;
}

footer a:hover {
    color: #fff;
}

.listen {
    list-style: none;
}

.listen li {
    padding: 5px 0;
}

.listen li a {
    color: #ccc;
}

.listen li a:hover {
    color: #fff;
}

/* Social Icons */
.soc_icons {
    list-style: none;
    display: flex;
    gap: 15px;
}

.soc_icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.soc_icons li a:hover {
    background: #2a6e2a;
    transform: translateY(-3px);
}

/* ========== Info Box ========== */
.info-box {
    background: #f8f8f8;
    border-left: 4px solid #2a6e2a;
    padding: 20px;
    margin: 20px 0;
}

/* ========== Table Styles ========== */
.score-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.score-table th,
.score-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.score-table th {
    background: #2a6e2a;
    color: #fff;
}

.score-table tr:nth-child(even) {
    background: #f5f5f5;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .grid_3, .grid_5, .grid_7 {
        width: 50%;
    }

    .hero h2 {
        font-size: 36px;
    }

    .slider_txt1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .grid_3, .grid_5, .grid_7 {
        width: 100%;
    }

    .sf-menu {
        flex-direction: column;
    }

    .sf-menu > li > a {
        padding: 12px 20px;
    }

    .sf-menu .sub-menu {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
    }

    .sf-menu .sub-menu li a {
        color: #fff;
        border-bottom-color: rgba(255,255,255,0.1);
        padding-left: 40px;
    }

    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        max-height: 80px;
    }

    .hero {
        height: 350px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .slider_txt1 {
        font-size: 22px;
    }

    .section {
        padding: 40px 0;
    }

    .footer_priv .grid_3 {
        text-align: center;
    }
}

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
